Quote Originally Posted by Shaggy Hiker View Post
I would suggest that it be one method:

Code:
Public Function GetPoint(Tile As integer) As Point 'Found in System.Drawing if this is not defined
 Return New Point(Tile Mod width, Tile \ width)
End Function
thanks, amazing! I'll look what I can do with my map editor now