tengri/Content/UE/GameModeBase.ts

12 lines
323 B
TypeScript

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