Files @ r12147:99c13aae2368
Branch filter:

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

yexo
(svn r16568) -Codechange: rename all arrays with airport-tile sprites
/* $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 */