summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/LowBatteryPower_t.cs
blob: c8a572e82f4cdf340e2b046fffb912f6a980abaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Runtime.InteropServices;

namespace Steamworks;

[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(702)]
public struct LowBatteryPower_t
{
	public const int k_iCallback = 702;

	public byte m_nMinutesBatteryLeft;
}