Files @ r12072:bcf36828afcb
Branch filter:

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

alberth
(svn r16486) -Codechange [FS#2939]: Added widget numbers to the airport toolbar (based on work by erikjanp)
/* $Id$ */

/** @file ai_signlist.hpp List all the signs of your company. */

#ifndef AI_SIGNLIST_HPP
#define AI_SIGNLIST_HPP

#include "ai_abstractlist.hpp"

/**
 * Create a list of signs your company has created.
 * @ingroup AIList
 */
class AISignList : public AIAbstractList {
public:
	static const char *GetClassName() { return "AISignList"; }
	AISignList();
};

#endif /* AI_SIGNLIST_HPP */