@fuwu-yuan/bgew
Version:
Baguette Game Engine Web is a french 2D Web game engine
22 lines (21 loc) • 434 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BoardConfig = void 0;
/**
* Your game config
*/
class BoardConfig {
constructor() {
this.game = {
FPS: 30
};
this.board = {
size: {
width: 800,
height: 800
},
background: "transparent"
};
}
}
exports.BoardConfig = BoardConfig;