#ifndef ENGINE_H #define ENGINE_H #include "math/Vector.h" namespace Engine { bool init(int argAmount, char* const* args); void start(); const IntVector2& getSize(); } #endif