namespace EPOOutline
{
///
/// Describes how outlinable should be rendered.
///
public enum RenderStyle
{
///
/// Always renders the same. No matter obscured or not.
///
Single = 1,
///
/// Renders with different settings when obscured and clear.
///
FrontBack = 2
}
}