LSReplayUpdater.cs 175 B

12345678
  1. namespace ET.Client
  2. {
  3. [ComponentOf(typeof(Room))]
  4. public class LSReplayUpdater: Entity, IAwake, IUpdate
  5. {
  6. public int ReplaySpeed { get; set; } = 1;
  7. }
  8. }