How can I support objects larger than a single tile in a 2D tile engine?
- by Yheeky
I´m currently working on a 2D Engine containing an isometric tile map. It´s running quite well but I'm not sure if I´ve chosen the best approach for that kind of engine.
To give you an idea what I´m thinking about right now, let's have a look at a basic object for a tile map and its objects:
public class TileMap {
public List<MapRow> Rows…