clean old files
This commit is contained in:
parent
2d7b1e34d0
commit
cc79cf906f
203 changed files with 12300 additions and 13288 deletions
8
src/models/bonus.ts
Normal file
8
src/models/bonus.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
export class Bonus {
|
||||
constructor(
|
||||
public description: string,
|
||||
public role: string,
|
||||
public units: number,
|
||||
public maxUnits: number
|
||||
) {}
|
||||
}
|
||||
10
src/models/champion.ts
Normal file
10
src/models/champion.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
export class Champion {
|
||||
constructor(
|
||||
public name: string,
|
||||
public roles: string[],
|
||||
public cost: number,
|
||||
public isSelected: boolean,
|
||||
public sinergy: boolean,
|
||||
public sinergy2: boolean
|
||||
) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue