13 lines
305 B
Ucode
13 lines
305 B
Ucode
class ICCME_Event_TeamGame_PlayerLeftTeam extends ICCME_Event_TeamGameBase;
|
|
|
|
var Pawn Player;
|
|
var bool bIsSwitch;
|
|
var ICCME_Event_Game_PlayerLeft Related_PlayerLeft;
|
|
|
|
function doLog()
|
|
{
|
|
super.doLog();
|
|
log("Player:"@Player);
|
|
log("bIsSwitch:"@bIsSwitch);
|
|
log("Related_PlayerLeft:"@Related_PlayerLeft);
|
|
} |