ULRE/example/Basic/first_app.cpp

16 lines
240 B
C++
Raw Normal View History

#include<hgl/graph/RenderFramework.h>
using namespace hgl;
2024-11-12 01:51:14 +08:00
using namespace hgl::graph;
int os_main(int,os_char **)
{
2024-11-12 01:51:14 +08:00
RenderFramework rf;
if(!rf.Init(1280,720,OS_TEXT("FirstApp")))
return 1;
rf.Run();
return 0;
}