(svn r15092) -Fix [NoAI]: make the library internal class name consistant with their directory name
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
/* $Id$ */
|
||||
|
||||
class BinaryHeap extends AILibrary {
|
||||
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 "BinaryHeap"; }
|
||||
function CreateInstance() { return "Binary_Heap"; }
|
||||
function GetCategory() { return "Queue"; }
|
||||
}
|
||||
|
||||
RegisterLibrary(BinaryHeap());
|
||||
RegisterLibrary(Binary_Heap());
|
||||
|
||||
Reference in New Issue
Block a user