Files @ r12308:95187fb621c3
Branch filter:

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

rubidium
(svn r16735) -Codechange: had_vehicle_of_type only stored 7 bits, all less that bit 7... but it was a word wasting space etc.
/* $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 */