예제 #1
0
파일: Skill.cs 프로젝트: hazzik/uwow2
 public Skill(Player player, [NotNull] SkillCap cap)
 {
     if (cap == null)
         throw new ArgumentNullException("cap");
     this.player = player;
     this.cap = cap;
 }
예제 #2
0
파일: Skill.cs 프로젝트: hazzik/uwow2
 public Skill(Player player, [NotNull] SkillCap cap)
 {
     if (cap == null)
     {
         throw new ArgumentNullException("cap");
     }
     this.player = player;
     this.cap    = cap;
 }