https://github.com/gldraphael/mg-ttt
🕹 Yet another tic-tac-toe game. Written using MonoGame this time.
https://github.com/gldraphael/mg-ttt
csharp game monogame tic-tac-toe
Last synced: 12 months ago
JSON representation
🕹 Yet another tic-tac-toe game. Written using MonoGame this time.
- Host: GitHub
- URL: https://github.com/gldraphael/mg-ttt
- Owner: gldraphael
- License: mit
- Created: 2017-10-26T21:05:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-01T05:47:34.000Z (over 8 years ago)
- Last Synced: 2025-06-26T12:51:53.872Z (about 1 year ago)
- Topics: csharp, game, monogame, tic-tac-toe
- Language: C#
- Homepage: https://gldraphael.github.io/mg-ttt/
- Size: 148 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TicTacToe
Yet another TicTacToe game. This time using MonoGame. Was able to learn it quick because I've used XNA back in 2012. Started writing this because of a sleepless night.
## Building the project on a Mac
**Requirements:**
- VS for Mac · [Download Page](https://www.visualstudio.com/vs/visual-studio-mac/)
- Mono · [Download Page](http://www.mono-project.com/download) · `brew install mono`
- MonoGame · [Download Page](http://www.monogame.net/downloads/)
**Steps:**
1. Clone the repo. (For shallow clone: `git clone --depth 1 https://github.com/gldraphael/mg-ttt.git`)
1. Open the `src/TicTacToe/Content/Content.mcgb` file with MonoGame's Pipeline tool and build it
1. Open the solution file at `src/TicTacToe.sln` using VS for Mac
1. Run the App from within VS for Mac using Cmd+Return
---
**README TODO**
1. Add steps to build the solution without Visual Studio. Should be doable using `xbuild` or `msbuild`.
1. Add build steps for Linux and Windows.