summaryrefslogtreecommitdiff
path: root/src/script/squirrel_helper_type.hpp
blob: c886d6700a6c0e209589180b3211f75eb5986f4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 */