Mirror of Svelto.ECS because we're a fan of it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
473B

  1. namespace Svelto.Ticker
  2. {
  3. public interface ITickableBase
  4. {
  5. }
  6. public interface ITickable: ITickableBase
  7. {
  8. void Tick(float deltaSec);
  9. }
  10. public interface ILateTickable : ITickableBase
  11. {
  12. void LateTick(float deltaSec);
  13. }
  14. public interface IPhysicallyTickable : ITickableBase
  15. {
  16. void PhysicsTick(float deltaSec);
  17. }
  18. public interface IIntervaledTickable : ITickableBase
  19. {
  20. void IntervaledTick();
  21. }
  22. }