mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-21 11:43:27 +00:00
21 lines
347 B
Java
21 lines
347 B
Java
package com.volmit.iris.object;
|
|
|
|
import com.volmit.iris.util.Desc;
|
|
import com.volmit.iris.util.DontObfuscate;
|
|
|
|
@Desc("Represents a basic font style to apply to a font family")
|
|
public enum FontStyle
|
|
{
|
|
@Desc("Plain old text")
|
|
@DontObfuscate
|
|
PLAIN,
|
|
|
|
@Desc("Italicized Text")
|
|
@DontObfuscate
|
|
ITALIC,
|
|
|
|
@Desc("Bold Text")
|
|
@DontObfuscate
|
|
BOLD,
|
|
}
|