tengri/Content/UE/PrimitiveComponent.ts

10 lines
265 B
TypeScript

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