mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-12 18:40:29 +00:00
13 lines
427 B
Plaintext
13 lines
427 B
Plaintext
|
/* $Id$ */
|
||
|
|
||
|
class BinaryHeap extends AILibrary {
|
||
|
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
|
||
|
function GetName() { return "Binary Heap"; }
|
||
|
function GetDescription() { return "An implementation of a Binary Heap"; }
|
||
|
function GetVersion() { return 1; }
|
||
|
function GetDate() { return "2008-06-10"; }
|
||
|
function CreateInstance() { return "BinaryHeap"; }
|
||
|
}
|
||
|
|
||
|
RegisterLibrary(BinaryHeap());
|