框架更新

This commit is contained in:
Bob.Song
2025-10-29 17:59:43 +08:00
parent fc18c8626a
commit a2cb248512
429 changed files with 7173 additions and 38748 deletions

View File

@@ -1,21 +0,0 @@
namespace Fantasy
{
/// <summary>
/// Scene的运行类型
/// </summary>
public class SceneRuntimeMode
{
/// <summary>
/// Scene在主线程中运行.
/// </summary>
public const string MainThread = "MainThread";
/// <summary>
/// Scene在一个独立的线程中运行.
/// </summary>
public const string MultiThread = "MultiThread";
/// <summary>
/// Scene在一个根据当前CPU核心数创建的线程池中运行.
/// </summary>
public const string ThreadPool = "ThreadPool";
}
}