Files @ r10758:7527fde7a84f
Branch filter:

Location: cpp/openttd-patchpack/source/bin/ai/library/queue/binary_heap/library.nut

truebrain
(svn r15091) -Add [NoAI] [API CHANGE]: introduce GetCategory() as a requirement for every library.nut, to indicate in which category it belongs. Currently the directory indicates the category, but this doesn't allow planned future additions
/* $Id$ */

class BinaryHeap extends AILibrary {
	function GetAuthor()      { return "OpenTTD NoAI Developers Team"; }
	function GetName()        { return "Binary Heap"; }
	function GetShortName()   { return "QUBH"; }
	function GetDescription() { return "An implementation of a Binary Heap"; }
	function GetVersion()     { return 1; }
	function GetDate()        { return "2008-06-10"; }
	function CreateInstance() { return "BinaryHeap"; }
	function GetCategory()    { return "Queue"; }
}

RegisterLibrary(BinaryHeap());