aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/assets.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mutationofjb/assets.h')
-rw-r--r--engines/mutationofjb/assets.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/mutationofjb/assets.h b/engines/mutationofjb/assets.h
index 2cd0612f20..89ed678c60 100644
--- a/engines/mutationofjb/assets.h
+++ b/engines/mutationofjb/assets.h
@@ -25,6 +25,7 @@
#include "mutationofjb/font.h"
#include "mutationofjb/conversationlinelist.h"
+#include "mutationofjb/inventoryitemdefinitionlist.h"
namespace MutationOfJB {
@@ -39,6 +40,7 @@ public:
ConversationLineList &getToSayList();
ConversationLineList &getResponseList();
+ InventoryItemDefinitionList &getInventoryItemDefList();
private:
Game &_game;
@@ -46,6 +48,7 @@ private:
SpeechFont _speechFont;
ConversationLineList _toSayList;
ConversationLineList _responseList;
+ InventoryItemDefinitionList _invItemDefList;
};
}