15 lines
311 B
C++
15 lines
311 B
C++
|
//
|
||
|
// Created by trotfunky on 11/06/19.
|
||
|
//
|
||
|
|
||
|
#include "Game.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
std::vector<std::string> textures = {"Head_Boy.png","Head_Significant_Boy.png","Building.png"};
|
||
|
std::vector<std::string> levels = {"test_level.xml"};
|
||
|
|
||
|
Game game(levels,textures);
|
||
|
game.loadLevel(0);
|
||
|
game.runGame();
|
||
|
}
|