SpatialFear.SFPickupElem

00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
//=============================================================================
// Unreal Spatial Fear
// Class: SFPickupElem
// Description:	Child class of USXListElem, to allow information
//				on collected pickup items to be stored in a list
//
// Author: Markus Nuebel
//=============================================================================

class SFPickupElem extends USXListElem;

var	class	m_classPickup; // Private the class stored for this pickup
	
function bool isEqual(USXListElem oSrc)
{
	local SFPickupElem	oCompare;

	oCompare	= SFPickupElem(oSrc);
	if(None	== oCompare)
		return false;

	return m_classPickup == oCompare.m_classPickup;

}

defaultproperties
{
}

class file time: 12/7/2003 3:58:24 PM - creation time: 12/7/2003 4:03:45 PM
Created with UnCodeX