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