Fixed the discrepancy between the screen coords and the game coords and also fixed mouse problem when zoomed out too far.

This commit is contained in:
2020-06-23 04:18:00 -06:00
parent c464d19857
commit 86cc05f0d7
42 changed files with 316 additions and 3472 deletions

View File

@@ -5,10 +5,10 @@ namespace Collector
public static class Program
{
[STAThread]
static void Main()
private static void Main()
{
using (var game = new Main())
game.Run();
using var game = new Main();
game.Run();
}
}
}