10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
|
|
export class Champion {
|
||
|
|
constructor(
|
||
|
|
public name: string,
|
||
|
|
public roles: string[],
|
||
|
|
public cost: number,
|
||
|
|
public isSelected: boolean,
|
||
|
|
public sinergy: boolean
|
||
|
|
) {}
|
||
|
|
}
|