Files @ r11050:73b6b0244342
Branch filter:

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

Yexo
(svn r15390) -Cleanup: Remove old hack that wasn't used anymore.
/* $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 */