aboutsummaryrefslogtreecommitdiffstats
path: root/include/common.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/common.hpp')
-rw-r--r--include/common.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/common.hpp b/include/common.hpp
index 3caa083..861905a 100644
--- a/include/common.hpp
+++ b/include/common.hpp
@@ -210,6 +210,14 @@ constexpr const float MSEC_PER_TICK = 1000.0f / TICKS_PER_SEC;
std::vector<std::string> StringTokenizer(const std::string& str, char delim);
/**
+ * Seperates a string like, "23,12" to a vec2.
+ *
+ * @param s the string to parse
+ * @return the vec2 of the values passed in the string
+ */
+vec2 str2coord(std::string s);
+
+/**
* A function to draw a colored box for OpenGL.
* To use it, the lower left hand and upper right hand coords are given.
*