diff options
author | tom barrett <spalf0@gmail.com> | 2019-06-22 10:11:18 -0500 |
---|---|---|
committer | tom barrett <spalf0@gmail.com> | 2019-06-22 10:11:18 -0500 |
commit | cccfb66c7c58bf464252e942ef2b742b41ece19e (patch) | |
tree | 8d13331a5cb65343d1a668d6dbb3fa4a62fb598a /src/lib.rs | |
parent | 99c6e61a2b8fe66dcef7eada525f6fbdd7a2cd00 (diff) |
now draw at the tile level
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,7 +1,10 @@ pub mod camera; pub mod constants; +pub mod layer; pub mod map; +pub mod math; pub mod player; pub mod state; +pub mod tile; pub mod tileset; pub mod xmlelements; |