12 lines
230 B
C#
12 lines
230 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
|
[CallbackIdentity(5001)]
|
|
public struct SteamParentalSettingsChanged_t
|
|
{
|
|
public const int k_iCallback = 5001;
|
|
}
|
|
}
|