import AbstractView from "./abstracts/AbstractView.js"; export default class extends AbstractView { constructor(params) { super(params, "Dashboard"); } async getHtml() { return `
Akel is a game engine designed to be easy to use. The purpose of the project is learning about game engine development, discovering new rendering processes and learning to use new tools. It is mainly coded on and for Linux but is cross-platform and has been tested on Windows and MacOS.
`; } }