Files
UltimateFishing/Assets/Plugins/Assembly-CSharp-firstpass/Steamworks/GameServerChangeRequested_t.cs
2026-02-21 16:45:37 +08:00

18 lines
399 B
C#

using System.Runtime.InteropServices;
namespace Steamworks
{
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(332)]
public struct GameServerChangeRequested_t
{
public const int k_iCallback = 332;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 64)]
public string m_rgchServer;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 64)]
public string m_rgchPassword;
}
}