summaryrefslogtreecommitdiffstats
path: root/source/LuaFunctions.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/LuaFunctions.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/source/LuaFunctions.h b/source/LuaFunctions.h
new file mode 100644
index 000000000..04de7784f
--- /dev/null
+++ b/source/LuaFunctions.h
@@ -0,0 +1,17 @@
+#pragma once
+
+#include "cMCLogger.h"
+#include <time.h>
+// tolua_begin
+
+unsigned int GetTime()
+{
+ return (unsigned int)time(0);
+}
+
+std::string GetChar( std::string & a_Str, unsigned int a_Idx )
+{
+ return std::string(1, a_Str[ a_Idx ]);
+}
+
+// tolua_end