CleanUp() removed

This commit is contained in:
EntenKoeniq
2021-11-28 22:57:39 +01:00
parent 2836953d89
commit 12a2ddf625
5 changed files with 14 additions and 20 deletions

View File

@ -11,7 +11,7 @@ namespace CoopClient.Entities
public EntitiesThread()
{
Tick += OnTick;
Interval = (int)(1f / (Game.FPS > 60f ? 60f : Game.FPS) * 1000f);
Interval = Util.GetGameMs<int>();
}
private void OnTick(object sender, EventArgs e)