├── img
├── icon.png
├── logo.png
├── alert.png
├── darkmode
│ ├── gui.png
│ └── tab.png
├── fabric_api.png
└── cloth_config_api.png
├── util
├── api_structure.png
├── example_datapack.zip
└── datapack_structure.png
├── versions.json
├── .gitignore
├── LICENSE
└── README.md
/img/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/icon.png
--------------------------------------------------------------------------------
/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/logo.png
--------------------------------------------------------------------------------
/img/alert.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/alert.png
--------------------------------------------------------------------------------
/img/darkmode/gui.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/darkmode/gui.png
--------------------------------------------------------------------------------
/img/darkmode/tab.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/darkmode/tab.png
--------------------------------------------------------------------------------
/img/fabric_api.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/fabric_api.png
--------------------------------------------------------------------------------
/util/api_structure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/util/api_structure.png
--------------------------------------------------------------------------------
/img/cloth_config_api.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/cloth_config_api.png
--------------------------------------------------------------------------------
/util/example_datapack.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/util/example_datapack.zip
--------------------------------------------------------------------------------
/util/datapack_structure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/util/datapack_structure.png
--------------------------------------------------------------------------------
/versions.json:
--------------------------------------------------------------------------------
1 | [{"versions":"1.17.1","releases":"3.0.x"},{"versions":"1.18.1","releases":"3.1.x"},{"versions":"1.19.x | 1.18.2","releases":"3.3.x | 3.2.x"}]
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # gradle
2 |
3 | .gradle/
4 | build/
5 | out/
6 | classes/
7 |
8 | # eclipse
9 |
10 | *.launch
11 |
12 | # idea
13 |
14 | .idea/
15 | *.iml
16 | *.ipr
17 | *.iws
18 |
19 | # vscode
20 |
21 | .settings/
22 | .vscode/
23 | bin/
24 | .classpath
25 | .project
26 |
27 | # macos
28 |
29 | *.DS_Store
30 |
31 | # fabric
32 |
33 | run/
34 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 CleverNucleus
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |