XIIIMP
Class TacticalPathNode

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

class TacticalPathNode
extends Engine.PathNode

//----------------------------------------------------------- // //-----------------------------------------------------------
Variables
 byte BotLevel
 byte Direction
           0:Go , 1:Back , 2:both
 byte Team


Source Code


00001	//-----------------------------------------------------------
00002	//
00003	//-----------------------------------------------------------
00004	class TacticalPathNode extends PathNode;
00005	
00006	var() byte Team;
00007	var() byte BotLevel;
00008	var() byte Direction; //0:Go , 1:Back , 2:both
00009	
00010	
00011	
00012	defaultproperties
00013	{
00014	}

End Source Code