summaryrefslogtreecommitdiff
path: root/bin/ai/library/queue/binary_heap/library.nut
blob: b0caf7d09b87b59544f9f28661df59595281e173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* $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());