TFTPaths/src/models/champion.ts
Daniel Rodriguez 2e12f90b7f TFTPaths 1.0
2019-08-19 19:44:54 +02:00

9 lines
210 B
TypeScript

export class Champion {
constructor(
public name: string,
public roles: string[],
public cost: number,
public isSelected: boolean,
public sinergy: boolean
) {}
}