UNPKG

ts-game-engine

Version:

Simple WebGL game/render engine written in TypeScript

11 lines (10 loc) 298 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Settings { constructor() { this.showBounds = false; } get ShowBounds() { return this.showBounds; } set ShowBounds(value) { this.showBounds = value; } } exports.Settings = Settings;