예제 #1
0
 /// <inheritdoc />
 public void OnGameFixedTick()
 {
     foreach (var entry in MovementGenerators.EnumerateWithGuid(KnonwnEntities))
     {
         IWorldObject worldObject = WorldObjectMap.RetrieveEntity(entry.EntityGuid);
         worldObject.SetLastUpdateTick(Client.CurrentTick);
         entry.ComponentValue.Update(worldObject, TimeService.CurrentRemoteTime);
     }
 }