Botpack
Class AlternatePath

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

class AlternatePath
extends Engine.NavigationPoint

//============================================================================= // AlternatePath. //=============================================================================
Variables
 float SelectionWeight
 byte Team
 bool bReturnOnly


Source Code


00001	//=============================================================================
00002	// AlternatePath.
00003	//=============================================================================
00004	class AlternatePath extends NavigationPoint;
00005	
00006	var() byte Team;
00007	var() float SelectionWeight;
00008	var() bool bReturnOnly;
00009	
00010	defaultproperties
00011	{
00012	     SelectionWeight=1.000000
00013	}

End Source Code