IGameLogic.cs 287 B

123456789101112131415
  1. namespace XGame.Framework
  2. {
  3. public interface IGameLogic
  4. {
  5. void Init();
  6. void Start();
  7. void Update(int millisecond);
  8. void LateUpdate(int millisecond);
  9. void Dispose();
  10. }
  11. public interface IGameLogicProxy : IGameLogic
  12. {
  13. }
  14. }