Files @ r10712:3ee31720391b
Branch filter:

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

truebrain
(svn r15044) -Add [NoAI]: AIConfig::GetVersion(), to get the version of the current AI
/* $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 */