예제 #1
0
파일: Player.cs 프로젝트: fxMem/Plot
        private void InvokeInContext(Action <LineContext> action)
        {
            var context = GetLineContext();

            action(context);

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