tengri/Content/UE/GameModeBase.ts

12 lines
311 B
TypeScript

// Content/GameModeBase.ts
import { Info } from '#root/UE/Info.ts';
import { Name } from '#root/UE/Name.ts';
import { UEObject } from '#root/UE/UEObject.ts';
export class GameModeBase extends Info {
constructor(outer: UEObject | null = null, name: Name | string = Name.NONE) {
super(outer, name);
}
}