We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12381d7 commit c253550Copy full SHA for c253550
GameFrameX.Core/Abstractions/IActor.cs
@@ -77,7 +77,7 @@ public interface IActor : IWorker
77
/// 并获取它们对应的代理实例。这个方法通常用于需要批量处理或遍历所有活跃组件的场景。
78
/// </remarks>
79
/// <returns>返回包含所有已激活组件代理实例的列表</returns>
80
- public List<IComponentAgent> GetActiveComponentAgents();
+ List<IComponentAgent> GetActiveComponentAgents();
81
82
/// <summary>
83
/// 设置自动回收标记
@@ -152,7 +152,7 @@ public interface IActor : IWorker
152
/// - 断开网络连接等
153
154
/// <returns>表示异步操作的任务</returns>
155
- internal Task OnRecycle();
+ Task OnRecycle();
156
157
158
/// 添加一个在Actor回收时执行一次的回调事件
0 commit comments