removeglobaldata(key, type);
Inheritance: StorySystem.AbstractStoryCommand
Beispiel #1
0
        protected override IStoryCommand CloneCommand()
        {
            RemoveGlobalDataCommand cmd = new RemoveGlobalDataCommand();

            cmd.m_Key  = m_Key.Clone();
            cmd.m_Type = m_Type.Clone();
            return(cmd);
        }
 public override IStoryCommand Clone()
 {
     RemoveGlobalDataCommand cmd = new RemoveGlobalDataCommand();
     cmd.m_Key = m_Key.Clone();
     cmd.m_Type = m_Type.Clone();
     return cmd;
 }