blob: 8485a5aa39cc1f04e7d60dacb097357a53453ddd (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 4)]
[CallbackIdentity(342)]
public struct JoinClanChatRoomCompletionResult_t
{
	public const int k_iCallback = 342;
	public CSteamID m_steamIDClanChat;
	public EChatRoomEnterResponse m_eChatRoomEnterResponse;
}
 |