I have a plan on my map that uses the player's TouchTiles method to interact with tiles inside the plan's area. I don't want it on the player sprite because it's specific to that area of that map, not something that applies anywhere else. I then have to get the x,y coordinates of the touched tiles within that map. To do that, at this point, I have to use:
((SpriteBase.TouchedTile)m_ParentLayer.m_Player.TouchedTiles[SharedTemp1]).x,
((SpriteBase.TouchedTile)m_ParentLayer.m_Player.TouchedTiles[SharedTemp1]).y
I could copy this out into a method, but it's not really long enough to warrant it. So, is there a reason why TouchedTiles is declared as an ArrayList instead of a List<TouchedTile>? It would get rid of the need to cast it here, and within the SpriteBase code. If I only make that change in SpriteBase, I can get the above down to this:
(m_ParentLayer.m_Player.TouchedTiles[SharedTemp1]).x,
(m_ParentLayer.m_Player.TouchedTiles[SharedTemp1]).y
It's at least a little better
