@osbjs/osbjs
Version:
a minimalist osu! storyboarding framework
15 lines (14 loc) • 432 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Scene = void 0;
const Component_1 = require("./Component");
class Scene extends Component_1.Component {
/**
* Create an "empty" Component. Its purpose is to make working with groups of components syntactically clearer.
*/
constructor() {
super();
this.name = 'Scene';
}
}
exports.Scene = Scene;