Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/humbertodias/unity-magiconion-chat
Simple Chat using MagicOnion
https://github.com/humbertodias/unity-magiconion-chat
csharp grpc magiconion unity
Last synced: 11 days ago
JSON representation
Simple Chat using MagicOnion
- Host: GitHub
- URL: https://github.com/humbertodias/unity-magiconion-chat
- Owner: humbertodias
- Created: 2024-05-05T00:25:08.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-06T02:57:58.000Z (9 months ago)
- Last Synced: 2025-01-10T18:20:20.637Z (14 days ago)
- Topics: csharp, grpc, magiconion, unity
- Language: C#
- Homepage:
- Size: 1.25 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chat App
Simple Chat using MagicOnion## Requirements
* C# 8+
* Unity 2021+
* Docker 21+## Modules
* [Client](./Chat.Client/) - Console client
* [Client-Unity](./Chat.Client-Unity/) - Game client
* [Server](./Chat.Server/) - Server and chat logic
* [Shared](./Chat.Shared/) - Message definition```mermaid
graph LR;
subgraph Server
chat.server -->|MagicOnion/gRPC| Internet
Internet -->|Port 5000| chat.server
endsubgraph Client
chat.client -->|Requests| Internet
chat.unity-client -->|Requests| Internet
end
```