(svn r15092) -Fix [NoAI]: make the library internal class name consistant with their directory name

This commit is contained in:
truebrain
2009-01-15 16:53:18 +00:00
parent 103cd2a5ed
commit 7eac17f5ea
6 changed files with 30 additions and 30 deletions

View File

@@ -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());