コード例 #1
0
ファイル: LiveMonster.cs プロジェクト: jayrulez/TOMClassic
        public IMonsterAuro AddAuro(int buff, int lv, string tar)
        {
            var auro = new MonsterAuro(this, buff, lv, tar);

            auroList.Add(auro);
            return(auro);
        }
コード例 #2
0
ファイル: LiveMonster.cs プロジェクト: narlon/TOMClassic
 public IMonsterAuro AddAuro(int buff, int lv, string tar)
 {
     var auro = new MonsterAuro(this, buff, lv, tar);
     auroList.Add(auro);
     return auro;
 }