Files

17 lines
422 B
C#
Raw Permalink Normal View History

2025-11-03 11:25:01 +08:00
namespace EPOOutline
{
/// <summary>
/// Describes how outlinable should be rendered.
/// </summary>
public enum RenderStyle
{
/// <summary>
/// Always renders the same. No matter obscured or not.
/// </summary>
Single = 1,
/// <summary>
/// Renders with different settings when obscured and clear.
/// </summary>
FrontBack = 2
}
}