Files @ r11414:66dd9ef9c484
Branch filter:

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

rubidium
(svn r15777) -Add: helper functions to get the least common multiple and the greatest common divisor (Alberth)
/* $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 */