29 lines
298 B
TypeScript
29 lines
298 B
TypeScript
|
import BaseSingleton from "../Engine/Utils/Singleton/BaseSingleton"
|
||
|
|
||
|
/**
|
||
|
* Room
|
||
|
*/
|
||
|
export default class Room extends BaseSingleton<Room>() {
|
||
|
|
||
|
//#region private
|
||
|
|
||
|
|
||
|
//#endregion
|
||
|
|
||
|
//#region Lifecycle
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
constructor() {
|
||
|
super()
|
||
|
|
||
|
}
|
||
|
|
||
|
//#endregion
|
||
|
|
||
|
//#region Custom
|
||
|
|
||
|
//#endregion
|
||
|
}
|