ITimerTick.cs 104 B

12345
  1. namespace XNode.Examples.LogicToy {
  2. public interface ITimerTick {
  3. void Tick(float timeDelta);
  4. }
  5. }