removeuserdata(guid, key, type);
Inheritance: StorySystem.AbstractStoryCommand
コード例 #1
0
        protected override IStoryCommand CloneCommand()
        {
            RemoveUserDataCommand cmd = new RemoveUserDataCommand();

            cmd.m_UserGuid = m_UserGuid.Clone();
            cmd.m_Key      = m_Key.Clone();
            cmd.m_Type     = m_Type.Clone();
            return(cmd);
        }
コード例 #2
0
 public override IStoryCommand Clone()
 {
     RemoveUserDataCommand cmd = new RemoveUserDataCommand();
     cmd.m_UserGuid = m_UserGuid.Clone();
     cmd.m_Key = m_Key.Clone();
     cmd.m_Type = m_Type.Clone();
     return cmd;
 }