(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 PriorityQueue extends AILibrary {
|
||||
class Priority_Queue 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 CreateInstance() { return "Priority_Queue"; }
|
||||
function GetCategory() { return "Queue"; }
|
||||
}
|
||||
|
||||
RegisterLibrary(PriorityQueue());
|
||||
RegisterLibrary(Priority_Queue());
|
||||
|
Reference in New Issue
Block a user