Files @ r12603:73cf823a9613
Branch filter:

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

alberth
(svn r17056) -Codechange: Reduce width of the drop-down in the bridge gui.
/* $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 */