【add】主入口初始化

This commit is contained in:
2025-11-03 11:25:01 +08:00
commit 87e659271b
1903 changed files with 220684 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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
}
}