2017-04-29 18:43:17 +00:00
|
|
|
//main file
|
|
|
|
|
|
|
|
#include<iostream>
|
2017-05-21 07:22:25 +00:00
|
|
|
#include"core.h"
|
2017-04-29 18:43:17 +00:00
|
|
|
|
2017-05-21 07:22:25 +00:00
|
|
|
Core core;
|
2017-04-29 18:43:17 +00:00
|
|
|
|
|
|
|
int main(int argc, char* args[]){
|
2017-05-21 07:22:25 +00:00
|
|
|
//if(argc == 2) std::cout << "Initializing..." << std::endl;
|
2017-05-05 14:19:44 +00:00
|
|
|
|
2017-05-21 07:22:25 +00:00
|
|
|
core.coreInit();
|
2017-04-30 16:23:47 +00:00
|
|
|
|
2017-04-29 18:43:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|