2020-03-05 11:43:38 +01:00
|
|
|
#include "Graphics/RenderCore.h"
|
|
|
|
|
using namespace Seele;
|
|
|
|
|
int main()
|
2020-02-05 20:58:58 +01:00
|
|
|
{
|
2020-03-05 11:43:38 +01:00
|
|
|
RenderCore core;
|
|
|
|
|
core.init();
|
|
|
|
|
core.renderLoop();
|
|
|
|
|
core.shutdown();
|
|
|
|
|
return 0;
|
2020-02-05 20:58:58 +01:00
|
|
|
}
|