Engine.h 189 B

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