#include #include #include 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; }