mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
fahhh
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#pragma once
|
||||
|
||||
#include "Gui/GUI.h"
|
||||
|
||||
namespace RBX {
|
||||
|
||||
class EquationDisplay : public TextDisplay {
|
||||
private:
|
||||
std::string equation;
|
||||
|
||||
protected:
|
||||
// TextDisplay
|
||||
std::string getLabel() const;
|
||||
|
||||
public:
|
||||
EquationDisplay(
|
||||
const std::string& title,
|
||||
const std::string& equation);
|
||||
|
||||
EquationDisplay(
|
||||
const std::string& title,
|
||||
const std::string& label,
|
||||
const std::string& equation);
|
||||
|
||||
/*override*/ void render2d(Adorn* adorn);
|
||||
};
|
||||
} // namespace
|
||||
Reference in New Issue
Block a user