File diff r10695:3124a970a753 → r10696:8dfe83e30d01
src/script/squirrel_helper_type.hpp
Show inline comments
 
new file 100644
 
/* $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 */