Adding text functionality to Caption (why was that missing???)

This commit is contained in:
John McCardle 2024-03-07 12:35:07 -05:00
commit 4b31864b2f
3 changed files with 17 additions and 7 deletions

View file

@ -1,7 +1,7 @@
#pragma once
#include "Common.h"
#include <list>
#include "UI.h"
//#include <list>
//#include "UI.h"
class GameEngine; // forward declared
@ -10,4 +10,5 @@ class Resources
public:
static sf::Font font;
static GameEngine* game;
static std::string caption_buffer;
};