Пример #1
0
    //Delays void action to allow menu sound to play before execution
    async void ExecuteAfterTime(int milliSeconds, MenuDelegateAction e)
    {
        await Task.Delay(milliSeconds);

        e.Invoke();
    }