rott/kf_sources/KFStoryGame/Classes/KFAmmoPickup_Story.uc
2026-07-14 20:27:09 +07:00

24 lines
509 B
Ucode

/*
--------------------------------------------------------------
KFAmmoPickup_Story
--------------------------------------------------------------
AmmoPickup actors tailored to Story missions. Refills specific
types of weapons.
Author : Alex Quick
--------------------------------------------------------------
*/
class KFAmmoPickup_Story extends KFAmmoPickup;
state Pickup
{
// When touched by an actor.
function Touch(Actor Other)
{
Super(Ammo).Touch(Other);
}
}