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