platform-test/source/main.cpp

15 lines
193 B
C++
Raw Normal View History

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-21 07:22:25 +00:00
core.coreInit();
2017-04-29 18:43:17 +00:00
return 0;
}