ProtoTank/Engine/Graphics/DebugUI.hpp
2024-09-14 16:36:15 +02:00

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;
};