jsonset(json,key/index,val);
Inheritance: AbstractStoryCommand
Example #1
0
        public override IStoryCommand Clone()
        {
            JsonSetCommand cmd = new JsonSetCommand();

            cmd.m_Var   = m_Var.Clone();
            cmd.m_Key   = m_Key.Clone();
            cmd.m_Value = m_Value.Clone();
            return(cmd);
        }
Example #2
0
 public override IStoryCommand Clone()
 {
     JsonSetCommand cmd = new JsonSetCommand();
     cmd.m_Var = m_Var.Clone();
     cmd.m_Key = m_Key.Clone();
     cmd.m_Value = m_Value.Clone();
     return cmd;
 }