summaryrefslogtreecommitdiff
path: root/src/simulation/Sign.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/simulation/Sign.h')
-rw-r--r--src/simulation/Sign.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/simulation/Sign.h b/src/simulation/Sign.h
index 14b7dac..1b45c25 100644
--- a/src/simulation/Sign.h
+++ b/src/simulation/Sign.h
@@ -11,6 +11,8 @@
#include <string>
+class Simulation;
+
class sign
{
public:
@@ -20,7 +22,8 @@ public:
Justification ju;
std::string text;
- void pos(int & x0, int & y0, int & w, int & h);
+ std::string getText(Simulation *sim);
+ void pos(std::string signText, int & x0, int & y0, int & w, int & h);
};
#endif