17 lines
573 B
Plaintext
17 lines
573 B
Plaintext
|
* Tris in stile C
|
||
|
*
|
||
|
* Gioco del tris in C.
|
||
|
* Include due modalità di gioco: 2 giocatori e giocatore
|
||
|
* singolo contro il computer(3 difficoltà a scelta basate
|
||
|
* sulla profondità dell'algoritmo minimax).
|
||
|
*
|
||
|
* Richiede un terminale con supporto alle sequenze di
|
||
|
* escape ANSI. Per windows è possible usare ANSIcon:
|
||
|
* https://github.com/adoxa/ansicon
|
||
|
*
|
||
|
* Dual licensed under the MIT and GPL licenses:
|
||
|
* http://www.opensource.org/licenses/mit-license.php
|
||
|
* http://www.gnu.org/licenses/gpl.html
|
||
|
*
|
||
|
* @author Michele Guerini Rocco aka Rnhmjoj
|
||
|
* @since 2011
|