8 lines
117 B
TypeScript
8 lines
117 B
TypeScript
|
export class Hero {
|
||
|
active:boolean;
|
||
|
|
||
|
constructor(public name:string,
|
||
|
public team:string[]) {
|
||
|
}
|
||
|
}
|