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

class PriorityQueue extends AILibrary {
	function GetAuthor()      { return "OpenTTD NoAI Developers Team"; }
	function GetName()        { return "Priority Queue"; }
	function GetShortName()   { return "QUPQ"; }
	function GetDescription() { return "An implementation of a Priority Queue"; }
	function GetVersion()     { return 2; }
	function GetDate()        { return "2008-06-10"; }
	function CreateInstance() { return "PriorityQueue"; }
	function GetCategory()    { return "Queue"; }
}

RegisterLibrary(PriorityQueue());