コード例 #1
0
        internal void InvokeLCZDeconEvent(out bool allow)
        {
            var ev = new LCZDecontaminationEventArgs
            {
                Allow = true,
            };

            LCZDecontaminationEvent?.Invoke(ev);

            allow = ev.Allow;
        }
コード例 #2
0
 private void Map_LCZDecontaminationEvent(LCZDecontaminationEventArgs ev)
 => ev.Allow = false;