]> git.lizzy.rs Git - shadowclad.git/blobdiff - src/engine/string.h
Extract some configuration into EngineConfig
[shadowclad.git] / src / engine / string.h
index 73e600bb5fa6b78ed848abcd75bce0145575f561..92409c32bafe0416da1a9d86cb1f5504f381e7e6 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef STRING_H_
-#define STRING_H_
+#ifndef ENGINE_STRING_H_
+#define ENGINE_STRING_H_
 
 #include <assimp/types.h>
 
@@ -10,7 +10,8 @@ struct String {
        char* cstr;
 };
 
+String newString(const char* s);
 String stringFromAiString(const struct aiString aistr);
 void dropString(String str);
 
-#endif // STRING_H_
+#endif // ENGINE_STRING_H_