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
|
|
|
core.coreInit();
|
2017-06-17 16:02:03 +00:00
|
|
|
|
2017-04-29 18:43:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|