├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── docs └── apidocs │ └── .gitkeep ├── gradle.properties ├── gradle ├── gradle-daemon-jvm.properties └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml ├── settings.gradle └── src ├── main ├── java │ └── com │ │ └── github │ │ └── tommyettinger │ │ └── your_library │ │ └── .gitkeep └── resources │ └── com │ └── github │ └── tommyettinger │ └── your_library.gwt.xml └── test ├── java └── com │ └── github │ └── tommyettinger │ └── your_library │ └── .gitkeep └── resources └── .gitkeep /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/README.md -------------------------------------------------------------------------------- /docs/apidocs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/gradle-daemon-jvm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/gradle/gradle-daemon-jvm.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/jitpack.yml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/com/github/tommyettinger/your_library/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/com/github/tommyettinger/your_library.gwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/libgdx-library-template/HEAD/src/main/resources/com/github/tommyettinger/your_library.gwt.xml -------------------------------------------------------------------------------- /src/test/java/com/github/tommyettinger/your_library/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------