13 lines
201 B
Ucode
13 lines
201 B
Ucode
class KFKeyInventory extends Inventory;
|
|
|
|
var KFKeyPickup MyPickup;
|
|
|
|
function UnLock();
|
|
|
|
function Destroyed()
|
|
{
|
|
if( MyPickup!=None )
|
|
MyPickup.GotoState('Pickup');
|
|
Super.Destroyed();
|
|
}
|