├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── client.lua ├── fxmanifest.lua └── web ├── assets ├── markdown_parser.js ├── music.js ├── script.js ├── styles.css └── utils.js ├── backgrounds ├── 1.jpg ├── 2.jpg ├── 3.jpg └── 4.jpg ├── config.js ├── index.html ├── logo └── logo.png └── music └── music.mp3 /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/README.md -------------------------------------------------------------------------------- /client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/client.lua -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/fxmanifest.lua -------------------------------------------------------------------------------- /web/assets/markdown_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/assets/markdown_parser.js -------------------------------------------------------------------------------- /web/assets/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/assets/music.js -------------------------------------------------------------------------------- /web/assets/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/assets/script.js -------------------------------------------------------------------------------- /web/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/assets/styles.css -------------------------------------------------------------------------------- /web/assets/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/assets/utils.js -------------------------------------------------------------------------------- /web/backgrounds/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/backgrounds/1.jpg -------------------------------------------------------------------------------- /web/backgrounds/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/backgrounds/2.jpg -------------------------------------------------------------------------------- /web/backgrounds/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/backgrounds/3.jpg -------------------------------------------------------------------------------- /web/backgrounds/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/backgrounds/4.jpg -------------------------------------------------------------------------------- /web/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/config.js -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/index.html -------------------------------------------------------------------------------- /web/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/logo/logo.png -------------------------------------------------------------------------------- /web/music/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-error/pe-basicloading/HEAD/web/music/music.mp3 --------------------------------------------------------------------------------