Minestom/src/main/java/net/minestom/server/advancements/FrameType.java
2020-08-04 00:32:03 +02:00

21 lines
455 B
Java

package net.minestom.server.advancements;
/**
* Describes the frame around the Advancement.
* Also describes the type of advancement it is for "toast" notifications.
*/
public enum FrameType {
/**
* A simple rounded square as the frame.
*/
TASK,
/**
* A spike in all 8 directions as the frame.
*/
CHALLENGE,
/**
* A square with a outward rounded edge on the top and bottom as the frame.
*/
GOAL
}