From d5568906739da23154cacd17aca93802901a9baf Mon Sep 17 00:00:00 2001 From: Ľubomír Remák Date: Sun, 28 Oct 2018 13:08:41 +0100 Subject: MUTATIONOFJB: Add support for combining items. Introduce game screen and game widget. Add status bar to show currently hovered and picked items. Load hardcoded strings from game executable. --- engines/mutationofjb/assets.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'engines/mutationofjb/assets.cpp') diff --git a/engines/mutationofjb/assets.cpp b/engines/mutationofjb/assets.cpp index 6f3236177b..02e0c85d7e 100644 --- a/engines/mutationofjb/assets.cpp +++ b/engines/mutationofjb/assets.cpp @@ -24,7 +24,7 @@ namespace MutationOfJB { -Assets::Assets(Game &game) : _game(game), _toSayList("tosay.ger"), _responseList("response.ger") {} +Assets::Assets(Game &game) : _game(game), _toSayList("tosay.ger"), _responseList("response.ger"), _hardcodedStrings(game) {} Font &Assets::getSystemFont() { return _systemFont; @@ -46,4 +46,8 @@ InventoryItemDefinitionList &Assets::getInventoryItemDefList() { return _invItemDefList; } +HardcodedStrings &Assets::getHardcodedStrings() { + return _hardcodedStrings; +} + } -- cgit v1.2.3