├── .gitignore ├── LICENSE ├── README.md ├── cpplibs ├── include │ ├── JavaScriptCore │ │ ├── JSBase.h │ │ ├── JSContextRef.h │ │ ├── JSObjectRef.h │ │ ├── JSObjectRefPrivate.h │ │ ├── JSRetainPtr.h │ │ ├── JSStringRef.h │ │ ├── JSTypedArray.h │ │ ├── JSValueRef.h │ │ ├── JavaScript.h │ │ └── WebKitAvailability.h │ └── Ultralight │ │ ├── Bitmap.h │ │ ├── Buffer.h │ │ ├── CAPI.h │ │ ├── Defines.h │ │ ├── Geometry.h │ │ ├── KeyCodes.h │ │ ├── KeyEvent.h │ │ ├── Listener.h │ │ ├── Matrix.h │ │ ├── MouseEvent.h │ │ ├── RefPtr.h │ │ ├── RenderTarget.h │ │ ├── Renderer.h │ │ ├── ScrollEvent.h │ │ ├── String.h │ │ ├── String16.h │ │ ├── String32.h │ │ ├── String8.h │ │ ├── Ultralight.h │ │ ├── View.h │ │ └── platform │ │ ├── Config.h │ │ ├── FileSystem.h │ │ ├── FontLoader.h │ │ ├── GPUDriver.h │ │ └── Platform.h ├── linux │ ├── libUltralight.so │ ├── libUltralightCore.so │ └── libWebCore.so ├── mac │ ├── libUltralight.dylib │ ├── libUltralightCore.dylib │ └── libWebCore.dylib └── win │ ├── Ultralight.dll │ ├── Ultralight.lib │ ├── UltralightCore.dll │ ├── UltralightCore.lib │ ├── WebCore.dll │ └── WebCore.lib ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── cpp │ ├── FileSystemBasic.cpp │ ├── FileSystemBasic.h │ ├── cafe_qwq_webcraft_api_View.cpp │ ├── cafe_qwq_webcraft_api_WebRenderer.cpp │ ├── cafe_qwq_webcraft_client_ClientEventListener.cpp │ ├── gl │ │ ├── GPUDriverGL.cpp │ │ └── GPUDriverGL.h │ ├── glad │ │ ├── glad.c │ │ ├── glad.h │ │ └── khrplatform.h │ └── shaders │ │ └── glsl │ │ ├── shader_fill_frag.h │ │ ├── shader_fill_path_frag.h │ │ ├── shader_v2f_c4f_t2f_t2f_d28f_vert.h │ │ └── shader_v2f_c4f_t2f_vert.h ├── java │ └── cafe │ │ └── qwq │ │ └── webcraft │ │ ├── Config.java │ │ ├── WebCraft.java │ │ ├── api │ │ ├── IRenderer.java │ │ ├── View.java │ │ ├── WebRenderer.java │ │ ├── WebScreen.java │ │ └── math │ │ │ ├── Vec2i.java │ │ │ └── Vec4i.java │ │ ├── client │ │ ├── ClientEventListener.java │ │ ├── KeyboardHelper.java │ │ └── UltralightWindow.java │ │ └── util │ │ └── FileUtils.java └── resources │ ├── META-INF │ └── mods.toml │ ├── assets │ └── webcraft │ │ └── web │ │ ├── button │ │ ├── button.png │ │ ├── button_disabled.png │ │ └── button_hover.png │ │ ├── fzxs12.ttf │ │ ├── minecraft.css │ │ └── minecraft.ttf │ ├── pack.mcmeta │ └── webcraft_logo.png └── test ├── java └── cafe │ └── qwq │ └── webcraft │ └── demo │ └── Demo.java └── resources ├── META-INF └── mods.toml ├── assets └── demo │ └── web │ └── test.html └── pack.mcmeta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/README.md -------------------------------------------------------------------------------- /cpplibs/include/JavaScriptCore/JSBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/JavaScriptCore/JSBase.h -------------------------------------------------------------------------------- /cpplibs/include/JavaScriptCore/JSContextRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/JavaScriptCore/JSContextRef.h -------------------------------------------------------------------------------- /cpplibs/include/JavaScriptCore/JSObjectRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/JavaScriptCore/JSObjectRef.h -------------------------------------------------------------------------------- /cpplibs/include/JavaScriptCore/JSObjectRefPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/JavaScriptCore/JSObjectRefPrivate.h -------------------------------------------------------------------------------- /cpplibs/include/JavaScriptCore/JSRetainPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/JavaScriptCore/JSRetainPtr.h -------------------------------------------------------------------------------- /cpplibs/include/JavaScriptCore/JSStringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/JavaScriptCore/JSStringRef.h -------------------------------------------------------------------------------- /cpplibs/include/JavaScriptCore/JSTypedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/JavaScriptCore/JSTypedArray.h -------------------------------------------------------------------------------- /cpplibs/include/JavaScriptCore/JSValueRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/JavaScriptCore/JSValueRef.h -------------------------------------------------------------------------------- /cpplibs/include/JavaScriptCore/JavaScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/JavaScriptCore/JavaScript.h -------------------------------------------------------------------------------- /cpplibs/include/JavaScriptCore/WebKitAvailability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/JavaScriptCore/WebKitAvailability.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/Bitmap.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/Buffer.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/CAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/CAPI.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/Defines.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/Geometry.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/KeyCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/KeyCodes.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/KeyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/KeyEvent.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/Listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/Listener.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/Matrix.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/MouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/MouseEvent.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/RefPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/RefPtr.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/RenderTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/RenderTarget.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/Renderer.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/ScrollEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/ScrollEvent.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/String.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/String16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/String16.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/String32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/String32.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/String8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/String8.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/Ultralight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/Ultralight.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/View.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/platform/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/platform/Config.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/platform/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/platform/FileSystem.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/platform/FontLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/platform/FontLoader.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/platform/GPUDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/platform/GPUDriver.h -------------------------------------------------------------------------------- /cpplibs/include/Ultralight/platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/include/Ultralight/platform/Platform.h -------------------------------------------------------------------------------- /cpplibs/linux/libUltralight.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/linux/libUltralight.so -------------------------------------------------------------------------------- /cpplibs/linux/libUltralightCore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/linux/libUltralightCore.so -------------------------------------------------------------------------------- /cpplibs/linux/libWebCore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/linux/libWebCore.so -------------------------------------------------------------------------------- /cpplibs/mac/libUltralight.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/mac/libUltralight.dylib -------------------------------------------------------------------------------- /cpplibs/mac/libUltralightCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/mac/libUltralightCore.dylib -------------------------------------------------------------------------------- /cpplibs/mac/libWebCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/mac/libWebCore.dylib -------------------------------------------------------------------------------- /cpplibs/win/Ultralight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/win/Ultralight.dll -------------------------------------------------------------------------------- /cpplibs/win/Ultralight.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/win/Ultralight.lib -------------------------------------------------------------------------------- /cpplibs/win/UltralightCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/win/UltralightCore.dll -------------------------------------------------------------------------------- /cpplibs/win/UltralightCore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/win/UltralightCore.lib -------------------------------------------------------------------------------- /cpplibs/win/WebCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/win/WebCore.dll -------------------------------------------------------------------------------- /cpplibs/win/WebCore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/cpplibs/win/WebCore.lib -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'webcraft' -------------------------------------------------------------------------------- /src/main/cpp/FileSystemBasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/FileSystemBasic.cpp -------------------------------------------------------------------------------- /src/main/cpp/FileSystemBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/FileSystemBasic.h -------------------------------------------------------------------------------- /src/main/cpp/cafe_qwq_webcraft_api_View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/cafe_qwq_webcraft_api_View.cpp -------------------------------------------------------------------------------- /src/main/cpp/cafe_qwq_webcraft_api_WebRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/cafe_qwq_webcraft_api_WebRenderer.cpp -------------------------------------------------------------------------------- /src/main/cpp/cafe_qwq_webcraft_client_ClientEventListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/cafe_qwq_webcraft_client_ClientEventListener.cpp -------------------------------------------------------------------------------- /src/main/cpp/gl/GPUDriverGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/gl/GPUDriverGL.cpp -------------------------------------------------------------------------------- /src/main/cpp/gl/GPUDriverGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/gl/GPUDriverGL.h -------------------------------------------------------------------------------- /src/main/cpp/glad/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/glad/glad.c -------------------------------------------------------------------------------- /src/main/cpp/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/glad/glad.h -------------------------------------------------------------------------------- /src/main/cpp/glad/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/glad/khrplatform.h -------------------------------------------------------------------------------- /src/main/cpp/shaders/glsl/shader_fill_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/shaders/glsl/shader_fill_frag.h -------------------------------------------------------------------------------- /src/main/cpp/shaders/glsl/shader_fill_path_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/shaders/glsl/shader_fill_path_frag.h -------------------------------------------------------------------------------- /src/main/cpp/shaders/glsl/shader_v2f_c4f_t2f_t2f_d28f_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/shaders/glsl/shader_v2f_c4f_t2f_t2f_d28f_vert.h -------------------------------------------------------------------------------- /src/main/cpp/shaders/glsl/shader_v2f_c4f_t2f_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/cpp/shaders/glsl/shader_v2f_c4f_t2f_vert.h -------------------------------------------------------------------------------- /src/main/java/cafe/qwq/webcraft/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/java/cafe/qwq/webcraft/Config.java -------------------------------------------------------------------------------- /src/main/java/cafe/qwq/webcraft/WebCraft.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/java/cafe/qwq/webcraft/WebCraft.java -------------------------------------------------------------------------------- /src/main/java/cafe/qwq/webcraft/api/IRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/java/cafe/qwq/webcraft/api/IRenderer.java -------------------------------------------------------------------------------- /src/main/java/cafe/qwq/webcraft/api/View.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/java/cafe/qwq/webcraft/api/View.java -------------------------------------------------------------------------------- /src/main/java/cafe/qwq/webcraft/api/WebRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/java/cafe/qwq/webcraft/api/WebRenderer.java -------------------------------------------------------------------------------- /src/main/java/cafe/qwq/webcraft/api/WebScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/java/cafe/qwq/webcraft/api/WebScreen.java -------------------------------------------------------------------------------- /src/main/java/cafe/qwq/webcraft/api/math/Vec2i.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/java/cafe/qwq/webcraft/api/math/Vec2i.java -------------------------------------------------------------------------------- /src/main/java/cafe/qwq/webcraft/api/math/Vec4i.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/java/cafe/qwq/webcraft/api/math/Vec4i.java -------------------------------------------------------------------------------- /src/main/java/cafe/qwq/webcraft/client/ClientEventListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/java/cafe/qwq/webcraft/client/ClientEventListener.java -------------------------------------------------------------------------------- /src/main/java/cafe/qwq/webcraft/client/KeyboardHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/java/cafe/qwq/webcraft/client/KeyboardHelper.java -------------------------------------------------------------------------------- /src/main/java/cafe/qwq/webcraft/client/UltralightWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/java/cafe/qwq/webcraft/client/UltralightWindow.java -------------------------------------------------------------------------------- /src/main/java/cafe/qwq/webcraft/util/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/java/cafe/qwq/webcraft/util/FileUtils.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /src/main/resources/assets/webcraft/web/button/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/resources/assets/webcraft/web/button/button.png -------------------------------------------------------------------------------- /src/main/resources/assets/webcraft/web/button/button_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/resources/assets/webcraft/web/button/button_disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/webcraft/web/button/button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/resources/assets/webcraft/web/button/button_hover.png -------------------------------------------------------------------------------- /src/main/resources/assets/webcraft/web/fzxs12.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/resources/assets/webcraft/web/fzxs12.ttf -------------------------------------------------------------------------------- /src/main/resources/assets/webcraft/web/minecraft.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/resources/assets/webcraft/web/minecraft.css -------------------------------------------------------------------------------- /src/main/resources/assets/webcraft/web/minecraft.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/resources/assets/webcraft/web/minecraft.ttf -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /src/main/resources/webcraft_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/main/resources/webcraft_logo.png -------------------------------------------------------------------------------- /src/test/java/cafe/qwq/webcraft/demo/Demo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/test/java/cafe/qwq/webcraft/demo/Demo.java -------------------------------------------------------------------------------- /src/test/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/test/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /src/test/resources/assets/demo/web/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/test/resources/assets/demo/web/test.html -------------------------------------------------------------------------------- /src/test/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hookan/WebCraft/HEAD/src/test/resources/pack.mcmeta --------------------------------------------------------------------------------