Exemplo n.º 1
0
 public void DataChange(object sender, Data.Inputs.Interfaces.IEventInput input)
 {
     if (sender is Achievement)
     {
         _achievementsToCreate.Push(sender as Achievement);
     }
 }
Exemplo n.º 2
0
        public void AddMethod(MethodParamResult inMethod, Data.Inputs.Interfaces.IEventInput input)
        {
            MethodParamPair pair = new MethodParamPair(inMethod, input, 0);

            _methods.AddLast(pair);
            if (_current == null)
            {
                _current = _methods.First;
            }
        }