From 48c24ec8b011d081550dc78329cbe61de67b30e9 Mon Sep 17 00:00:00 2001 From: troido Date: Sun, 5 Apr 2020 20:04:33 +0200 Subject: items are now mostly replaced by itemids, with a mapping to the item in the encyclopedia --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 2f42ac3..34819e3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -35,11 +35,13 @@ mod sprite; mod timestamp; mod purgatory; mod config; +mod item; use self::{ pos::Pos, playerid::PlayerId, roomid::RoomId, + item::ItemId, util::Result, sprite::Sprite, template::Template, -- cgit