This commit is contained in:
Sven Van de Velde 2016-05-11 06:07:05 +02:00
parent 5990650529
commit 15b189d747

View File

@ -4,12 +4,13 @@
Include.File( "Client" )
Include.File( "Scheduler" )
Include.File( "Menu" )
--- The MISSILETRAINER class
-- @type MISSILETRAINER
-- @extends Base#BASE
MISSILETRAINER = {
ClassName = "MISSILETRAINER",
ClassName = "MISSILETRAINER",
}
--- Creates the main object which is handling missile tracking.
@ -28,6 +29,10 @@ function MISSILETRAINER:New( Distance )
_EVENTDISPATCHER:OnShot( self._EventShot, self )
self.Database = DATABASE:New():FilterStart()
-- Set the menus for the missile trainer
return self
end