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
- Host: GitHub
- URL: https://github.com/bwsix/tic-tac-toe.multiplayer
- Owner: BWsix
- Created: 2023-08-21T14:34:07.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-21T14:34:19.000Z (almost 3 years ago)
- Last Synced: 2024-04-24T03:22:52.030Z (about 2 years ago)
- Language: C
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)