11 lines
201 B
C#
11 lines
201 B
C#
namespace Steamworks;
|
|
|
|
public struct GamePhaseRecordingInfo
|
|
{
|
|
public string PhaseId;
|
|
public ulong RecordingMs;
|
|
public ulong LongestClipMs;
|
|
public uint ClipCount;
|
|
public uint ScreenshotCount;
|
|
}
|