@sex-pomelo/sex-pomelo
Version:
[![NPM version][npm-image-pomelo]][npm-url-pomelo] [![NPM version][npm-image-down]][npm-url-pomelo]
21 lines (15 loc) • 339 B
JavaScript
;
/**
* BaseGameRemote is a base class that can be extended.
*/
class BaseGameRemote {
/**
*
* @param {import('../types/index').Application} app
*/
constructor(app){
/** @type {import('../types/index').Application} */
this.app = app;
}
}
module.exports = { BaseGameRemote };