Files @ r12355:15ed6906d629
Branch filter:

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

yexo
(svn r16789) -Codechange: unify the drawing of the Accepts/Supplies cargo lists in the station build windows.
/* $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[];
};

#endif /* SQUIRREL_HELPER_TYPE_HPP */