Botpack
Class DefensePoint

source: e:\games\UnrealTournament\Botpack\Classes\DefensePoint.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.NavigationPoint
         |
         +--Engine.AmbushPoint
            |
            +--Botpack.DefensePoint
Direct Known Subclasses:None

class DefensePoint
extends Engine.AmbushPoint

//============================================================================= // Defensepoint. //=============================================================================
Variables
 name FortTag
           optional associated fort (for assault game)
 byte priority
 byte team


Source Code


00001	//=============================================================================
00002	// Defensepoint.
00003	//=============================================================================
00004	class DefensePoint extends AmbushPoint;
00005	
00006	var() byte team;
00007	var() byte priority;
00008	var() name FortTag;	//optional associated fort (for assault game)
00009	
00010	defaultproperties
00011	{
00012	}

End Source Code