starting game planning

This commit is contained in:
2026-08-23 22:37:40 -05:00
parent 9308f9d7da
commit 194eef56ab
10 changed files with 77 additions and 23 deletions

20
src/Game.cpp Normal file
View File

@@ -0,0 +1,20 @@
#include "Game.h"
#include <RmlUi/Core/Context.h>
#include <iostream>
#include <raylib.h>
#include <RmlUi/Core.h>
void Game::Draw2D() {return;}
void Game::Update() {
// TODO: Remove this debug
std::cout << "Game update" << std::endl;
return;
}
bool Game::Init(Rml::Context *context) {
if (!ctx) return false;
ctx = context;
return true;
}