From 2b5a3a59ec9c5768613141e7cfd32c257ae4f0e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=80=9D=E6=B5=B7?= <1464576565@qq.com> Date: Mon, 8 Sep 2025 10:10:14 +0800 Subject: [PATCH] modify --- Runtime/FSM/FsmModule.cs | 2 +- Runtime/Localization/Manager/LocalizationModule.cs | 2 +- Runtime/Timer/TimerModule.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Runtime/FSM/FsmModule.cs b/Runtime/FSM/FsmModule.cs index 6c349ab..b408ee8 100644 --- a/Runtime/FSM/FsmModule.cs +++ b/Runtime/FSM/FsmModule.cs @@ -8,7 +8,7 @@ using Object = UnityEngine.Object; namespace AlicizaX.Fsm.Runtime { [Preserve] - public sealed class FsmModule : IFsmModule + internal sealed class FsmModule : IFsmModule { private readonly List _active = new List(256); private readonly List _toRemove = new List(64); diff --git a/Runtime/Localization/Manager/LocalizationModule.cs b/Runtime/Localization/Manager/LocalizationModule.cs index e5a2b55..a19087f 100644 --- a/Runtime/Localization/Manager/LocalizationModule.cs +++ b/Runtime/Localization/Manager/LocalizationModule.cs @@ -8,7 +8,7 @@ namespace AlicizaX.Localization.Runtime /// 本地化管理器。 /// [UnityEngine.Scripting.Preserve] - public sealed partial class LocalizationModule : ILocalizationModule + internal sealed partial class LocalizationModule : ILocalizationModule { private readonly Dictionary Dic = new(); private Language _language; diff --git a/Runtime/Timer/TimerModule.cs b/Runtime/Timer/TimerModule.cs index 7546e78..694e8be 100644 --- a/Runtime/Timer/TimerModule.cs +++ b/Runtime/Timer/TimerModule.cs @@ -8,7 +8,7 @@ namespace AlicizaX.Timer.Runtime public delegate void TimerHandler(params object[] args); [Serializable] - public class Timer : IMemory + internal class Timer : IMemory { public int TimerId; public float TriggerTime;