Engine
Class InventorySpot

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

class InventorySpot
extends Engine.NavigationPoint

//============================================================================= // InventorySpot. //=============================================================================
Variables
 Inventory markedItem


Source Code


00001	//=============================================================================
00002	// InventorySpot.
00003	//=============================================================================
00004	class InventorySpot extends NavigationPoint
00005		native;
00006	
00007	var Inventory markedItem;
00008	
00009	defaultproperties
00010	{
00011	     bEndPointOnly=True
00012	     bHiddenEd=True
00013	     bCollideWhenPlacing=False
00014	     CollisionRadius=20.000000
00015	     CollisionHeight=40.000000
00016	}

End Source Code