TH1/Unity/Assets/Scripts/Model/Client/LockStep/LSClientUpdater.cs
2025-07-17 18:26:28 +08:00

12 lines
228 B
C#

using TrueSync;
namespace ET.Client
{
[ComponentOf(typeof(Room))]
public class LSClientUpdater: Entity, IAwake, IUpdate
{
public LSInput Input = new();
public long MyId { get; set; }
}
}