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