AsloEngine/program.cpp
2019-08-29 20:18:48 +02:00

22 lines
No EOL
391 B
C++
Executable file

#include "program.hpp"
int main()
{
asloengine::Settings settings
{
640, // Resolution X
480, // Resolution Y
24, // Bit Depth
60, // Max Framerate
true, // Vsync Enabled
false // Fullscreen Enabled
};
asloengine::init(new asloengine::SceneDefault(), settings);
asloengine::start_main_game_loop();
return 0;
}