LSClientUpdater.cs 228 B

123456789101112
  1. using TrueSync;
  2. namespace ET.Client
  3. {
  4. [ComponentOf(typeof(Room))]
  5. public class LSClientUpdater: Entity, IAwake, IUpdate
  6. {
  7. public LSInput Input = new();
  8. public long MyId { get; set; }
  9. }
  10. }