tengri/Content/UE/ShapeComponent.ts

10 lines
273 B
TypeScript

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