XIIIMP
Class GuardPathNode

source: C:\XIII\XIIIMP\Classes\GuardPathNode.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.NavigationPoint
         |
         +--Engine.PathNode
            |
            +--XIIIMP.GuardPathNode
Direct Known Subclasses:None

class GuardPathNode
extends Engine.PathNode

//----------------------------------------------------------- // //-----------------------------------------------------------
Variables
 byte BotLevel
 bool CanBeUsedByTheAttackTeam
 bool Closed
 byte Team


Source Code


00001	//-----------------------------------------------------------
00002	//
00003	//-----------------------------------------------------------
00004	class GuardPathNode extends PathNode;
00005	
00006	var() byte Team;
00007	var() byte BotLevel;
00008	var bool Closed;
00009	var() bool CanBeUsedByTheAttackTeam;
00010	
00011	
00012	
00013	defaultproperties
00014	{
00015	     bDirectional=True
00016	}

End Source Code