blob: 48e3c1ce6b5680f12e0b74d4bee3055620ce0d07 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Size = 1)]
[CallbackIdentity(5001)]
public struct SteamParentalSettingsChanged_t
{
public const int k_iCallback = 5001;
}
|