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

13 lines
276 B
Ucode

class NiceSoundCls extends Effects;
var Sound effectSound;
var float effectVolume;
simulated function PostBeginPlay(){
if(effectSound != none)
PlaySound(effectSound,, effectVolume);
}
defaultproperties
{
DrawType=DT_None
LifeSpan=0.100000
}