public class MinEventActionLogStatsRebirth : MinEventActionTargetedBase { public override void Execute(MinEventParams _params) { var entity = _params.Self as EntityAlive; if (entity == null) { return; } RebirthUtilities.LogStats(entity); } }