mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 17:53:55 +01:00
14 lines
201 B
TypeScript
14 lines
201 B
TypeScript
export class PlayerOwnedAugmentation {
|
|
level = 1;
|
|
name = "";
|
|
|
|
constructor(name = "") {
|
|
this.name = name;
|
|
}
|
|
}
|
|
|
|
export interface IPlayerOwnedAugmentation {
|
|
level: number;
|
|
name: string;
|
|
}
|