【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>
/// Outline rendering strategy.
/// </summary>
public enum OutlineRenderingStrategy
{
/// <summary>
/// All outlines are rendered to the same buffer.
/// </summary>
Default,
/// <summary>
/// Each outlinable rendered and postprocessed separately. Allows to have overlapping outlinables but greatly increases the performance penalty.
/// </summary>
PerObject
}
}