mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
13 lines
230 B
C++
13 lines
230 B
C++
|
#include "config.h"
|
||
|
#include "App.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
mlog_init();
|
||
|
/// Create The Default Window Instance
|
||
|
WindowManager::getDefaultInstance();
|
||
|
App::Main();
|
||
|
WindowManager::releaseDefaultInstance();
|
||
|
return 0;
|
||
|
}
|