LD52/src/game.cc
Stephen Seo c1725b0a13 Init commit skeleton project
Template based on existing project.
2023-01-07 13:12:20 +09:00

21 lines
307 B
C++

#include "game.h"
// third party includes
#include <raylib.h>
Game::Game() {}
void Game::do_update() {
update_impl();
draw_impl();
}
void Game::update_impl() {}
void Game::draw_impl() {
BeginDrawing();
ClearBackground(BLACK);
DrawText("Testing...", 100, 100, 30, RAYWHITE);
EndDrawing();
}