Skip to content

Instantly share code, notes, and snippets.

View yadavvi91's full-sized avatar

Vishal Yadav yadavvi91

View GitHub Profile
@yadavvi91
yadavvi91 / Draw.java
Created July 27, 2017 09:35
A stateful implementation of TicTacToe in Java.
package tictactoe.state;
import tictactoe.statemanager.StateManager;
public class Draw implements State {
private final StateManager manager;
public Draw(StateManager manager) {
this.manager = manager;