diff options
author | tom barrett <spalf0@gmail.com> | 2019-07-03 05:54:53 -0500 |
---|---|---|
committer | tom barrett <spalf0@gmail.com> | 2019-07-03 05:54:53 -0500 |
commit | c04c59c7dd5ee6e3982a8ba45e42072b34f2be8a (patch) | |
tree | 20536de65ea296cfa46ddb613b1a192cf13ee422 /src/lib.rs | |
parent | 976ad40137cf468eda32b1d947c524bfaeeaa7da (diff) |
refactored how entities work
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,9 +1,11 @@ +pub mod animation; pub mod camera; pub mod constants; pub mod entity; pub mod layer; pub mod map; pub mod math; +pub mod npc; pub mod player; pub mod property; pub mod state; |