16 lines
376 B
C#
16 lines
376 B
C#
|
namespace ET
|
|||
|
{
|
|||
|
[NumericWatcher(NumericType.Quk)]
|
|||
|
public class NumericWatcher_Quk : INumericWatcher
|
|||
|
{
|
|||
|
public async ETTask Run(Entity entity, float old, float value)
|
|||
|
{
|
|||
|
|
|||
|
DelaySendSyncAttributeComponent.instance.Add(entity.As<Unit>(), NumericType.Quk, value);
|
|||
|
await ETTask.CompletedTask;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
}
|