1er commit
This commit is contained in:
22
src/Tower Defense.cpp
Normal file
22
src/Tower Defense.cpp
Normal file
@@ -0,0 +1,22 @@
|
||||
//============================================================================
|
||||
// Name : Tower.cpp
|
||||
// Author : Persson
|
||||
// Version :
|
||||
// Copyright : Copyright
|
||||
// Description : Hello World in C++, Ansi-style
|
||||
//============================================================================
|
||||
|
||||
#include "window/Display.h"
|
||||
#include "misc/Random.h"
|
||||
|
||||
int main(int argc, const char* args[]){
|
||||
td::utils::initRandomizer();
|
||||
Display::create();
|
||||
while (!Display::isCloseRequested()){
|
||||
Display::pollEvents();
|
||||
Display::render();
|
||||
Display::update();
|
||||
}
|
||||
Display::destroy();
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user