Engine.h 182 B

123456789101112
  1. #ifndef ENGINE_H
  2. #define ENGINE_H
  3. #include "utils/Size.h"
  4. namespace Engine {
  5. bool init(int argAmount, char* const* args);
  6. void start();
  7. const Size& getSize();
  8. }
  9. #endif