namespace ET { [NumericWatcher(NumericType.PhyAtk)] public class NumericWatcher_PhyAtk : INumericWatcher { public async ETTask Run(Entity entity, float old, float value) { if (!entity) return; DelaySendSyncAttributeComponent.instance.Add(entity.As(), NumericType.PhyAtk, value); await ETTask.CompletedTask; } } }