21 lines
252 B
C++
21 lines
252 B
C++
#include <iostream>
|
|
#include "game.hpp"
|
|
|
|
|
|
int main(int argc, char const *argv[])
|
|
{
|
|
game game;
|
|
|
|
bool success = game.Init(100,100,1024,768);
|
|
|
|
while (success)
|
|
{
|
|
game.RunLoop();
|
|
}
|
|
|
|
game.Shutdown();
|
|
|
|
|
|
return 0;
|
|
}
|