11 lines
310 B
TypeScript
11 lines
310 B
TypeScript
// Content/UE/CameraComponent.ts
|
|
|
|
import { SceneComponent } from '/Content/UE/SceneComponent.ts';
|
|
import type { UEObject } from '/Content/UE/UEObject.ts';
|
|
|
|
export class CameraComponent extends SceneComponent {
|
|
constructor(outer: UEObject | null = null, name: string = 'None') {
|
|
super(outer, name);
|
|
}
|
|
}
|