Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
end

subgraph Client
chat.client -->|Requests| Internet
chat.unity-client -->|Requests| Internet
end
```