コード例 #1
0
ファイル: AttackDamage.cs プロジェクト: Th0w/KayleCulator
 public AttackDamage(BaseChampion owner, float Base, float scaling)
 {
     this.Base = Base;
     this.scaling = scaling;
 }
コード例 #2
0
ファイル: AttackSpeed.cs プロジェクト: Th0w/KayleCulator
 public AttackSpeed(BaseChampion owner, float Base, float scaling)
 {
     this.Base = Base;
     this.scaling = scaling;
     this.owner = owner;
 }
コード例 #3
0
ファイル: AbilityPower.cs プロジェクト: Th0w/KayleCulator
 public AbilityPower(BaseChampion owner) { this.owner = owner; }