src/squirrel_helper_type.hpp
branchnoai
changeset 10992 4dd4f4327c3a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/squirrel_helper_type.hpp	Tue Jun 17 11:46:09 2008 +0000
@@ -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 */