├── .gitignore ├── LICENSE.md ├── README.md ├── docs ├── allclasses-index.html ├── allpackages-index.html ├── day │ └── dean │ │ └── skullcreator │ │ ├── SkullCreator.html │ │ ├── class-use │ │ └── SkullCreator.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html ├── deprecated-list.html ├── element-list ├── help-doc.html ├── index-all.html ├── index.html ├── jquery-ui.overrides.css ├── legal │ ├── ADDITIONAL_LICENSE_INFO │ ├── ASSEMBLY_EXCEPTION │ ├── LICENSE │ ├── jquery.md │ └── jqueryUI.md ├── member-search-index.js ├── module-search-index.js ├── overview-tree.html ├── package-search-index.js ├── resources │ ├── glass.png │ └── x.png ├── script-dir │ ├── jquery-3.6.0.min.js │ ├── jquery-ui.min.css │ └── jquery-ui.min.js ├── script.js ├── search.js ├── stylesheet.css ├── tag-search-index.js └── type-search-index.js ├── pom.xml └── src └── main ├── java └── day │ └── dean │ └── skullcreator │ ├── SkullCreator.java │ └── SkullCreatorTesterPlugin.java └── resources └── plugin.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | skullcreator.iml 3 | target/ 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/README.md -------------------------------------------------------------------------------- /docs/allclasses-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/allclasses-index.html -------------------------------------------------------------------------------- /docs/allpackages-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/allpackages-index.html -------------------------------------------------------------------------------- /docs/day/dean/skullcreator/SkullCreator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/day/dean/skullcreator/SkullCreator.html -------------------------------------------------------------------------------- /docs/day/dean/skullcreator/class-use/SkullCreator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/day/dean/skullcreator/class-use/SkullCreator.html -------------------------------------------------------------------------------- /docs/day/dean/skullcreator/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/day/dean/skullcreator/package-summary.html -------------------------------------------------------------------------------- /docs/day/dean/skullcreator/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/day/dean/skullcreator/package-tree.html -------------------------------------------------------------------------------- /docs/day/dean/skullcreator/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/day/dean/skullcreator/package-use.html -------------------------------------------------------------------------------- /docs/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/deprecated-list.html -------------------------------------------------------------------------------- /docs/element-list: -------------------------------------------------------------------------------- 1 | day.dean.skullcreator 2 | -------------------------------------------------------------------------------- /docs/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/help-doc.html -------------------------------------------------------------------------------- /docs/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/index-all.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery-ui.overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/jquery-ui.overrides.css -------------------------------------------------------------------------------- /docs/legal/ADDITIONAL_LICENSE_INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/legal/ADDITIONAL_LICENSE_INFO -------------------------------------------------------------------------------- /docs/legal/ASSEMBLY_EXCEPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/legal/ASSEMBLY_EXCEPTION -------------------------------------------------------------------------------- /docs/legal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/legal/LICENSE -------------------------------------------------------------------------------- /docs/legal/jquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/legal/jquery.md -------------------------------------------------------------------------------- /docs/legal/jqueryUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/legal/jqueryUI.md -------------------------------------------------------------------------------- /docs/member-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/member-search-index.js -------------------------------------------------------------------------------- /docs/module-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/module-search-index.js -------------------------------------------------------------------------------- /docs/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/overview-tree.html -------------------------------------------------------------------------------- /docs/package-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/package-search-index.js -------------------------------------------------------------------------------- /docs/resources/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/resources/glass.png -------------------------------------------------------------------------------- /docs/resources/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/resources/x.png -------------------------------------------------------------------------------- /docs/script-dir/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/script-dir/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/script-dir/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/script-dir/jquery-ui.min.css -------------------------------------------------------------------------------- /docs/script-dir/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/script-dir/jquery-ui.min.js -------------------------------------------------------------------------------- /docs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/script.js -------------------------------------------------------------------------------- /docs/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/search.js -------------------------------------------------------------------------------- /docs/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/stylesheet.css -------------------------------------------------------------------------------- /docs/tag-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/tag-search-index.js -------------------------------------------------------------------------------- /docs/type-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/docs/type-search-index.js -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/day/dean/skullcreator/SkullCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/src/main/java/day/dean/skullcreator/SkullCreator.java -------------------------------------------------------------------------------- /src/main/java/day/dean/skullcreator/SkullCreatorTesterPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/src/main/java/day/dean/skullcreator/SkullCreatorTesterPlugin.java -------------------------------------------------------------------------------- /src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanveloper/SkullCreator/HEAD/src/main/resources/plugin.yml --------------------------------------------------------------------------------