21 lines
331 B
C++
21 lines
331 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include <SFML/Graphics/Font.hpp>
|
|
#include <SFML/Graphics/Text.hpp>
|
|
#include <SFML/Graphics/RenderWindow.hpp>
|
|
|
|
|
|
class DebugUI {
|
|
public:
|
|
DebugUI();
|
|
~DebugUI() {}
|
|
|
|
void UpdateDebugData(std::shared_ptr<sf::RenderWindow> context);
|
|
|
|
private:
|
|
sf::Font gDbgFont;
|
|
sf::Text gDbgText;
|
|
|
|
}; |