Core/src/main/java/eu/univento/core/api/story/StoryMissions.java

28 lines
464 B
Java

/*
* Copyright (c) 2017 univento.eu - All rights reserved
* You are not allowed to use, distribute or modify this code
*/
package eu.univento.core.api.story;
import lombok.Getter;
/**
* @author joethei
* @version 1.0
*/
public enum StoryMissions {
START(1, "Story.Mission.Start");
@Getter
private int id;
@Getter
private String name;
StoryMissions(int id, String name) {
this.id = id;
this.name = name;
}
}