13 lines
No EOL
221 B
TypeScript
13 lines
No EOL
221 B
TypeScript
export class Slot {
|
|
public status:number;
|
|
public team:number;
|
|
public player:number; // playerId
|
|
public mods:number;
|
|
|
|
public constructor() {
|
|
this.status = 0;
|
|
this.team = 0;
|
|
this.player = 0;
|
|
this.mods = 0;
|
|
}
|
|
} |