├── .github ├── FUNDING.yml └── img │ ├── demo1.png │ └── demo2.png ├── .gitignore ├── LICENSE ├── README.md └── src ├── org └── x3urobeat │ └── oldGamemode │ └── Main.java └── plugin.yml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/oldGamemodePlugin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/img/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/oldGamemodePlugin/HEAD/.github/img/demo1.png -------------------------------------------------------------------------------- /.github/img/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/oldGamemodePlugin/HEAD/.github/img/demo2.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/oldGamemodePlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/oldGamemodePlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/oldGamemodePlugin/HEAD/README.md -------------------------------------------------------------------------------- /src/org/x3urobeat/oldGamemode/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/oldGamemodePlugin/HEAD/src/org/x3urobeat/oldGamemode/Main.java -------------------------------------------------------------------------------- /src/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/oldGamemodePlugin/HEAD/src/plugin.yml --------------------------------------------------------------------------------