Files @ r10941:b4d2d42ae2eb
Branch filter:

Location: cpp/openttd-patchpack/source/src/script/squirrel_helper_type.hpp

peter1138
(svn r15280) -Cleanup: ancient and vastly out of date comment...
/* $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 */