diff options
| author | troido <troido@protonmail.com> | 2020-02-21 19:43:43 +0100 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2020-02-21 19:43:43 +0100 |
| commit | 1f85c11d0ebb0a879b7825b8e78e473a77d8b778 (patch) | |
| tree | a1d4d274bd107bddefa425fdf255cbdc123cd904 /src/main.rs | |
| parent | 4ed2d71e76f04c75a214e43363dc1b64e109fe3d (diff) | |
sprites are not strings anymore
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 6da6d57..b0ffb77 100644 --- a/src/main.rs +++ b/src/main.rs @@ -30,11 +30,13 @@ mod roomid; mod persistence; mod worldloader; mod world; +mod sprite; pub use self::pos::Pos; pub use self::playerid::PlayerId; pub use self::roomid::RoomId; pub use self::util::Result; +pub use self::sprite::Sprite; use self::gameserver::GameServer; use self::server::unixserver::UnixServer; |
