tengri/Content/UE/ShapeComponent.ts

8 lines
237 B
TypeScript

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