@enn3devplayer/owd-mines
Version:
Minesweeper game for OWD
33 lines (32 loc) • 570 B
text/typescript
export default {
id: 'com.enn3developer.owd_mines',
title: 'N Mines',
singleton: true,
icon: 'mdi:bomb',
category: "games",
windows: {
main: {
component: () => import('./components/Window/WindowTemplate.vue'),
resizable: true,
size: {
width: 1280,
height: 720,
},
position: {
x: 400,
y: 240,
z: 0,
},
},
},
entries: {
mines: {
command: 'mines',
},
},
commands: {
mines: (app: IApplicationController) => {
app.openWindow('main')
},
},
}