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