XIII
Class BreathSkill

source: C:\XIII\XIII\Classes\BreathSkill.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.Inventory
         |
         +--Engine.Powerups
            |
            +--XIII.XIIISkill
               |
               +--XIII.BreathSkill
Direct Known Subclasses:None

class BreathSkill
extends XIII.XIIISkill

//----------------------------------------------------------- // Called by XIIIPawn (554:38) //-----------------------------------------------------------

Function Summary
 void GiveTo(Pawn Other)
     
//_____________________________________________________________________________
 void PickupFunction(Pawn Other)
     
//_____________________________________________________________________________



Source Code


00001	//-----------------------------------------------------------
00002	// Called by XIIIPawn (554:38)
00003	//-----------------------------------------------------------
00004	class BreathSkill extends XIIISkill;
00005	
00006	//_____________________________________________________________________________
00007	function PickupFunction(Pawn Other)
00008	{
00009	    log(self@"PickupFunction"@other@"call");
00010	
00011	    Super.PickupFunction(Other);
00012	    XIIIPawn(Other).SetBreatheOn();
00013	}
00014	
00015	//_____________________________________________________________________________
00016	function GiveTo( pawn Other )
00017	{
00018	    log(self@"GiveTo"@other@"call");
00019	
00020	    Super.GiveTo(Other);
00021	    XIIIPawn(Other).SetBreatheOn();
00022	}
00023	
00024	
00025	defaultproperties
00026	{
00027	     PickupClass=Class'XIII.BreathSkillPick'
00028	}

End Source Code