summaryrefslogtreecommitdiff
path: root/bin/ai/library/queue/binary_heap/library.nut
blob: 5216fb588f5223fb5536ab0ec9e152c84c636000 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* $Id$ */

class Binary_Heap 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 "Binary_Heap"; }
	function GetCategory()    { return "Queue"; }
}

RegisterLibrary(Binary_Heap());