12 lines
172 B
C#
12 lines
172 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class PacketRecordSettings
|
|
{
|
|
internal bool RecordingFrames;
|
|
|
|
public float UpdateRate = 1f / 30f;
|
|
|
|
internal float AccumulatedTime;
|
|
}
|