summaryrefslogtreecommitdiff
path: root/src/script/squirrel_helper_type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/squirrel_helper_type.hpp')
-rw-r--r--src/script/squirrel_helper_type.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/script/squirrel_helper_type.hpp b/src/script/squirrel_helper_type.hpp
new file mode 100644
index 000000000..c886d6700
--- /dev/null
+++ b/src/script/squirrel_helper_type.hpp
@@ -0,0 +1,13 @@
+/* $Id$ */
+
+/** @file squirrel_helper_type.hpp Helper structs for converting Squirrel data structures to C++. */
+
+#ifndef SQUIRREL_HELPER_TYPE_HPP
+#define SQUIRREL_HELPER_TYPE_HPP
+
+struct Array {
+ int32 size;
+ int32 array[VARARRAY_SIZE];
+};
+
+#endif /* SQUIRREL_HELPER_TYPE_HPP */