···11# TitTacToe
2233-**TODO: Add description**
33+A simple tic tac toe game in elixir.
4455## Installation
6677-If [available in Hex](https://hex.pm/docs/publish), the package can be installed
88-by adding `tit_tac_toe` to your list of dependencies in `mix.exs`:
77+To see two random players play against each other, run:
981010-```elixir
1111-def deps do
1212- [
1313- {:tit_tac_toe, "~> 0.1.0"}
1414- ]
1515-end
1616-```
99+ mix start_game
1010+1111+or you can specify two differnet players types to pit against each other, choosing from
17121818-Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
1919-and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
2020-be found at <https://hexdocs.pm/tit_tac_toe>.
1313+ - rand: a random move player
1414+ - term: an interactive player providing moves via the terminal
1515+ - udp: a player that will send moves via udp packets
1616+1717+for example, to make player X play via the terminal and player O play via upd:
21181919+ mix start_game term udp