Пример #1
0
    public static RPGActionQueue Create(RPGAction action)
    {
        var newQueue = new RPGActionQueue();

        newQueue.Actions.Add(action);
        return(newQueue);
    }
Пример #2
0
 public RPGAction Add(RPGAction action)
 {
     Actions.Add(action);
     return(action);
 }