21 lines
339 B
C++
21 lines
339 B
C++
|
#include <ehs/Str.h>
|
||
|
#include <ehs/Version.h>
|
||
|
#include <ehs/io/Window.h>
|
||
|
|
||
|
using namespace ehs;
|
||
|
|
||
|
SInt_32 Main(Str_8* appName, Str_8* appVerId, Version* appVer)
|
||
|
{
|
||
|
*appName = "Test";
|
||
|
*appVerId = "Release";
|
||
|
*appVer = {1, 0, 0};
|
||
|
|
||
|
Window win;
|
||
|
win.Create_8("Test", {0, 0}, {800, 600});
|
||
|
win.Show();
|
||
|
|
||
|
while (true)
|
||
|
win.Poll();
|
||
|
|
||
|
return 0;
|
||
|
}
|