updateSystem.h 301 B

12345678910111213141516
  1. #pragma once
  2. #include "componentSystem.h"
  3. class UpdateSystemInterface : public SystemInterface<UpdateSystemInterface>
  4. {
  5. public:
  6. bool mIsEnabled;
  7. };
  8. class UpdateSystem
  9. {
  10. public:
  11. static void processTick();
  12. static void advanceTime(U32 _tickMS);
  13. static void interpolateTick(U32 _deltaMS);
  14. };