Files
UT99-Mod-IChaChaMutEngine/Classes/ICCME_Event_DeathMatch_Shoot_Confirmed.uc
2023-06-19 18:52:25 +01:00

20 lines
352 B
Ucode

class ICCME_Event_DeathMatch_Shoot_Confirmed extends ICCME_Event_DeathMatch_Shoot;
var bool bConfirmed;
var Actor Victim;
var ICCME_Stats_Player_DeathMatch VictimStats;
function doLog()
{
super.doLog();
log("bConfirmed:"@bConfirmed);
log("Victim:"@Victim);
log("VictimStats:"@VictimStats);
}
defaultproperties
{
bConfirmed=False
}