├── .gitattributes ├── .gitignore ├── .reuse └── dep5 ├── LICENSES ├── CC0-1.0.txt └── GPL-3.0-or-later.txt ├── Readme.md ├── keyconf.txt ├── language.txt ├── menudef.txt ├── mod-menu.txt ├── mod-menu.txt.license ├── more-menus.json ├── more-menus.json.license ├── screenshots ├── screenshot.png └── screenshot.png.license └── zscript.zs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/.gitignore -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/Readme.md -------------------------------------------------------------------------------- /keyconf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/keyconf.txt -------------------------------------------------------------------------------- /language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/language.txt -------------------------------------------------------------------------------- /menudef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/menudef.txt -------------------------------------------------------------------------------- /mod-menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/mod-menu.txt -------------------------------------------------------------------------------- /mod-menu.txt.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Alexander Kromm 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /more-menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/more-menus.json -------------------------------------------------------------------------------- /more-menus.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Alexander Kromm 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/screenshots/screenshot.png -------------------------------------------------------------------------------- /screenshots/screenshot.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Alexander Kromm 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /zscript.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaulwurff/mod-menu/HEAD/zscript.zs --------------------------------------------------------------------------------