mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-18 15:28:43 +02:00
11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
import type { AugmentationName } from "./Enums";
|
|
|
|
export class PlayerOwnedAugmentation {
|
|
level = 1;
|
|
name: AugmentationName;
|
|
|
|
constructor(name: AugmentationName) {
|
|
this.name = name;
|
|
}
|
|
}
|