mirror of
https://github.com/YouHaveTrouble/GuildMaster.git
synced 2026-05-12 06:26:59 +00:00
13 lines
224 B
TypeScript
13 lines
224 B
TypeScript
export enum QuestRank {
|
|
S = "S",
|
|
A = "A",
|
|
B = "B",
|
|
C = "C",
|
|
D = "D",
|
|
E = "E",
|
|
F = "F",
|
|
}
|
|
|
|
export function getFromString(string: keyof typeof QuestRank): QuestRank {
|
|
return QuestRank[string];
|
|
} |