TMXResource contains a level created from a Tile Map XML
| 9 | |
| 10 | // TMXResource contains a level created from a Tile Map XML |
| 11 | type TMXResource struct { |
| 12 | // Level holds the reference to the parsed TMX level |
| 13 | Level *Level |
| 14 | url string |
| 15 | } |
| 16 | |
| 17 | // URL retrieves the url to the .tmx file |
| 18 | func (r TMXResource) URL() string { |
nothing calls this directly
no outgoing calls
no test coverage detected