|
// 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);
|
|
}
|
|
}
|