src/squirrel_helper_type.hpp
author rubidium
Tue, 17 Jun 2008 11:46:09 +0000
branchnoai
changeset 10992 4dd4f4327c3a
permissions -rw-r--r--
(svn r13546) [NoAI] -Codechange: add support to pass arrays with integers to C++ functions.
/* $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 */