DataStore.ActionLibrary.getSequence C# (CSharp) Method

getSequence() public method

public getSequence ( string name ) : ActionSequence
name string
return ActionSequence
        public ActionSequence<NaoSkeleton> getSequence(string name)
        {
            if (!this.actions.ContainsKey(name))
            {
                throw new ArgumentException(name + " is an unknown action.");
            }
            return this.actions[name];
        }