Files @ r10907:3616576a3216
Branch filter:

Location: cpp/openttd-patchpack/source/src/ai/api/ai_railtypelist.hpp

rubidium
(svn r15242) -Feature: allow moving clients between companies/spectators by the server and the clients themselves (dihedral)
/* $Id$ */

/** @file ai_railtypelist.hpp List all available railtypes. */

#ifndef AI_RAILTYPELIST_HPP
#define AI_RAILTYPELIST_HPP

#include "ai_abstractlist.hpp"

/**
 * Creates a list of all available railtypes.
 * @ingroup AIList
 */
class AIRailTypeList : public AIAbstractList {
public:
	static const char *GetClassName() { return "AIRailTypeList"; }
	AIRailTypeList();
};

#endif /* AI_RAILTYPELIST_HPP */