예제 #1
0
        private MonsterAttackInfo GetAttackInfo(bool usingSkill)
        {
            MonsterAttackInfo i = new MonsterAttackInfo
            {
                Target = Monster.Target,
                UseSkill = usingSkill
            };

            return i;
        }
예제 #2
0
 public MonsterAttackInfoEventArgs(MonsterAttackInfo i)
 {
     this.info = i;
 }