BlackFeeder.Entry.OnEnd C# (CSharp) Method

OnEnd() private static method

private static OnEnd ( EventArgs args ) : void
args System.EventArgs
return void
        private static void OnEnd(EventArgs args)
        {
            Game.Say("/all Good game guys, well played.");

            if (Menu.Item("Quit.Activated").GetValue<bool>())
            {
                Utility.DelayAction.Add(3000, () => Game.Quit());
            }
        }