#include #include namespace game { bool Init() { return true; } void PreFrame() { } void Render() { glClearColor(0.2f, 0.3f, 0.3f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); } void Update() { } void PostFrame() { } void Cleanup() { } }