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