An open API service indexing awesome lists of open source software.

https://github.com/zfoo-project/godot-bird

bird and bird made with Godot Engine
https://github.com/zfoo-project/godot-bird

Last synced: 10 months ago
JSON representation

bird and bird made with Godot Engine

Awesome Lists containing this project

README

          

# godot-bird(鸟了个鸟)powered by godot 4.4

- frontend:[godot](https://github.com/godotengine/godot)

- backend:[server](./server/src/main/java/fun/jiucai/bogers/Application.java)

- support await grammar of net request

```
var groupHistoryMessageResponse: GroupHistoryMessageResponse = await Main.tcpClient.asyncAsk(request)
```

- including GDScript serialization and deserialization.
```
ProtocolManager.write(buffer, ScoreRankRequest.new())

var request = ProtocolManager.read(buffer)
```