src/squirrel_helper_type.hpp
branchnoai
changeset 10992 4dd4f4327c3a
equal deleted inserted replaced
10978:13fd0364b2c6 10992:4dd4f4327c3a
       
     1 /* $Id$ */
       
     2 
       
     3 /** @file squirrel_helper_type.hpp Helper structs for converting Squirrel data structures to C++. */
       
     4 
       
     5 #ifndef SQUIRREL_HELPER_TYPE_HPP
       
     6 #define SQUIRREL_HELPER_TYPE_HPP
       
     7 
       
     8 struct Array {
       
     9 	int32 size;
       
    10 	int32 array[VARARRAY_SIZE];
       
    11 };
       
    12 
       
    13 #endif /* SQUIRREL_HELPER_TYPE_HPP */