Created
February 3, 2014 05:07
-
-
Save wmiller/8779111 to your computer and use it in GitHub Desktop.
XML Database Info Loading Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get all tiles in the database that match the height | |
TileInfo[] tileInfos = Database.Instance.GetEntries<TileInfo>().Where((info) => info.Height == height).ToArray(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment