GURT protocol (lib, cli, gdextension, Flumi integration)

This commit is contained in:
Face
2025-08-14 20:29:19 +03:00
parent 65f3a21890
commit c117e602fe
46 changed files with 6559 additions and 89 deletions

Binary file not shown.

View File

@@ -0,0 +1,13 @@
[configuration]
entry_symbol = "gdext_rust_init"
compatibility_minimum = 4.1
[libraries]
macos.debug = "res://addons/gurt-protocol/bin/macos/libgurt_godot.dylib"
macos.release = "res://addons/gurt-protocol/bin/macos/libgurt_godot.dylib"
windows.debug.x86_64 = "res://addons/gurt-protocol/bin/windows/gurt_godot.dll"
windows.release.x86_64 = "res://addons/gurt-protocol/bin/windows/gurt_godot.dll"
linux.debug.x86_64 = "res://addons/gurt-protocol/bin/linux/libgurt_godot.so"
linux.release.x86_64 = "res://addons/gurt-protocol/bin/linux/libgurt_godot.so"

View File

@@ -0,0 +1 @@
uid://dgbwo0xlp5gya

View File

@@ -0,0 +1,7 @@
[plugin]
name="GURT Protocol"
description="HTTP-like networking extension for Godot games using the GURT protocol"
author="FaceDev"
version="0.1.0"
script="plugin.gd"

View File

@@ -0,0 +1,8 @@
@tool
extends EditorPlugin
func _enter_tree():
print("GURT Protocol plugin enabled")
func _exit_tree():
print("GURT Protocol plugin disabled")

View File

@@ -0,0 +1 @@
uid://tt2hh4j8txne