16 lines
376 B
C#
Executable File
16 lines
376 B
C#
Executable File
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
|
|
{
|
|
} |