I want to be able to find out where my entities are and how many tiles away they are from other entities.
1st test:
Dog at x:0,y:0 overTiles() reports x:0,y:0, happy days.
Distance returns 0. 2nd test:
I've moved the dog to tile x:2,y:0, however overTiles() reports it's on x:1,y:-1
Distance returns 1.4142135623730951 3rd test:
I've moved the dog to tile x:0,y:2, however overTiles() reports it's on x:2,y:2
Distance returns 2.8284271247461903 4th test:
I've moved the dog to tile x:9,y:9 however overTiles() reports it's on x:14,y:5
Distance returns 14.866068747318506
