12 lines
337 B
TypeScript
12 lines
337 B
TypeScript
// UE/LocalPlayerSubsystem.ts
|
|
|
|
import { Name } from '#root/UE/Name.ts';
|
|
import { Subsystem } from '#root/UE/Subsystem.ts';
|
|
import { UEObject } from '#root/UE/UEObject.ts';
|
|
|
|
export class LocalPlayerSubsystem extends Subsystem {
|
|
constructor(outer: UEObject | null = null, name: Name | string = Name.NONE) {
|
|
super(outer, name);
|
|
}
|
|
}
|