Exemplo n.º 1
0
Arquivo: Player.cs Projeto: fxMem/Plot
        private void InvokeInContext(Action <LineContext> action)
        {
            var context = GetLineContext();

            action(context);

            do
            {
                CurrentLine.Invoke(context);
            }while (context.Skip);
        }