Files
UT99-Mod-IChaChaMutEngine/Classes/ICCME_Event_DeathMatch_Shoot_Confirmed.uc
2023-06-05 23:00:36 +01:00

18 lines
294 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);
}
defaultproperties
{
bConfirmed=False
}