【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,21 @@
namespace EPOOutline
{
/// <summary>
/// Describes how the masking will behave for the object.
/// </summary>
public enum ComplexMaskingMode
{
/// <summary>
/// No masking applied.
/// </summary>
None,
/// <summary>
/// Obstacles mode enabled.
/// </summary>
ObstaclesMode,
/// <summary>
/// Masking mode enabled.
/// </summary>
MaskingMode
}
}