diff options
Diffstat (limited to 'src/text.cpp')
-rw-r--r-- | src/text.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/text.cpp b/src/text.cpp new file mode 100644 index 0000000..baeabcd --- /dev/null +++ b/src/text.cpp @@ -0,0 +1,14 @@ +#include "common.hpp" + +namespace text { + +std::string unit_no_path; +std::string unit_blocked; + +void load_strings(std::string lang) +{ + unit_no_path = "Cannot find a path."; + unit_blocked = "The path is blocked."; +} + +} |