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

https://github.com/bwsix/tic-tac-toe.multiplayer

I somehow managed to build a barely functional multiplayer game :o
https://github.com/bwsix/tic-tac-toe.multiplayer

Last synced: over 1 year ago
JSON representation

I somehow managed to build a barely functional multiplayer game :o

Awesome Lists containing this project

README

          

# Tic-Tac-Toe.multiplayer

I somehow managed to build a _barely functional_ multiplayer game :o

## How to build this

```bash
cd /path/to/tic-tac-toe.multiplayer
cmake -S . -B build
cmake --build build
```

After building, both client and server executable can now be found in
`./build/tic-tac-toe/`

## How to play this

- `server`
- usage: `server `
- run server before client
- `client` \* 2
- usage: `client `

## Stuff

- Raylib: https://www.raylib.com
- Hands-On Network Programming with C Learn socket programming in C and write
secure and optimized network code (Lewis Van Winkle)