Board Object class with a getter and a setter to get JSON into Clojure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package networkplayer; | |
public class BoardObject { | |
private String boardState; | |
public void setBoardState(String boardState) { | |
this.boardState = boardState; | |
} | |
public String getBoardState() { | |
return boardState; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment