From e39b352934468d4be50e69a3473b17cbd5634ad4 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Tue, 11 Aug 2020 19:54:10 +0200 Subject: [PATCH] Make BaseLibrary members protected instead of private. Signed-off-by: Deukhoofd --- src/Library/BaseLibrary.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Library/BaseLibrary.hpp b/src/Library/BaseLibrary.hpp index 7eb80e7..5322d9d 100644 --- a/src/Library/BaseLibrary.hpp +++ b/src/Library/BaseLibrary.hpp @@ -13,6 +13,7 @@ namespace CreatureLib::Library { template class BaseLibrary { + protected: ArbUt::Dictionary> _values; ArbUt::List _listValues; size_t _index;