mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-08 04:55:52 +08:00
19 lines
331 B
Java
19 lines
331 B
Java
package emu.grasscutter.game.quest.enums;
|
|
|
|
public enum ParentQuestState {
|
|
PARENT_QUEST_STATE_NONE (0),
|
|
PARENT_QUEST_STATE_FINISHED (1),
|
|
PARENT_QUEST_STATE_FAILED (2),
|
|
PARENT_QUEST_STATE_CANCELED (3);
|
|
|
|
private final int value;
|
|
|
|
ParentQuestState(int id) {
|
|
this.value = id;
|
|
}
|
|
|
|
public int getValue() {
|
|
return value;
|
|
}
|
|
}
|