view Main/jungle-main/persistent/Result.cs @ 20:1f99e150f336

fix folder and add Object Mapper.
author Kazuma Takeda
date Thu, 15 Dec 2016 22:52:48 +0900
parents
children
line wrap: on
line source


public class Result {
	public static Result ACCEPT = new Result("ACCEPT");
	public static Result CONTINUE = new Result("CONTINUE");
	public static Result BREAK = new Result("BREAK");
	public static Result GOAL = new Result("GOAL");
	public static Result SUCCESS = new Result ("SUCCESS");

	private string name;

	private Result(string _name) {
		name = _name;
	}

	private string toString() {
		return name;
	}

}