├── .gitignore ├── README.md ├── dist └── build.js ├── hook.js ├── index.ts ├── main.js ├── menu.js ├── mod.js ├── package.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlxMod/FlxMod-template2/HEAD/README.md -------------------------------------------------------------------------------- /dist/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlxMod/FlxMod-template2/HEAD/dist/build.js -------------------------------------------------------------------------------- /hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlxMod/FlxMod-template2/HEAD/hook.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlxMod/FlxMod-template2/HEAD/index.ts -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlxMod/FlxMod-template2/HEAD/main.js -------------------------------------------------------------------------------- /menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlxMod/FlxMod-template2/HEAD/menu.js -------------------------------------------------------------------------------- /mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlxMod/FlxMod-template2/HEAD/mod.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlxMod/FlxMod-template2/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlxMod/FlxMod-template2/HEAD/tsconfig.json --------------------------------------------------------------------------------