Files
ScoreSaberUtils-Script/src/pages/page.ts

24 lines
354 B
TypeScript
Raw Normal View History

2024-04-25 23:39:26 +01:00
export default class Page {
/**
* The route of the page
* eg: /ranking
*/
private readonly _route: string;
constructor(route: string) {
this._route = route;
}
/*
* This gets called when the page is loaded
*/
public onLoad() {}
/**
* The route of the page
*/
get route(): string {
return this._route;
}
}