diff options
Diffstat (limited to 'src/state.h')
-rw-r--r-- | src/state.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/state.h b/src/state.h index 07d466a1..36bd87d0 100644 --- a/src/state.h +++ b/src/state.h @@ -25,6 +25,7 @@ #define _TMW_SERVER_STATE_ #include <map> +#include <string> #include "object.h" @@ -64,6 +65,11 @@ class State * Remove an object from the map. */ void removeObject(ObjectPtr objectPtr); + + /** + * Say around an object. + */ + void sayAround(Object *, std::string text); }; extern State *gameState; |