Ejemplo n.º 1
0
        //技能・能力ロールを行った履歴をリストに入力する
        public void SetSkillHistory(string m_skill, ロール m_type)
        {
            DateTime dt = DateTime.Now;

            ActionHistorys.Add(
                new ActionHistory().Set(m_skill, dt.ToString("yyyy/MM/dd HH:mm:ss"), m_type));
        }
Ejemplo n.º 2
0
        public ActionHistory Set(string sk, string ti, ロール ty)
        {
            this.Skill = sk;
            this.Time  = ti;
            this.Type  = ty;

            return(this);
        }