tengri/Content/UE/PrimitiveComponent.ts

8 lines
225 B
TypeScript

import { SceneComponent } from '#root/UE/SceneComponent.ts';
export class PrimitiveComponent extends SceneComponent {
constructor(outer: SceneComponent | null = null, name: string = 'None') {
super(outer, name);
}
}