Created
August 11, 2017 09:45
-
-
Save pelensky/aea91de80c38d7c94d62d8defcb5489e to your computer and use it in GitHub Desktop.
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