Files @ r11288:5c4e64d574de
Branch filter:

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

smatz
(svn r15642) -Codechange: use a default parameter value in CalcClosestTownFromTile
/* $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 */