Engine2026/game/game.cpp
2026-07-04 17:43:15 +02:00

37 lines
No EOL
361 B
C++

#include <iostream>
#include <glad/glad.h>
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()
{
}
}