mirror of https://github.com/axmolengine/axmol.git
Add missing virtual destructor in ILocalizationManager
This commit is contained in:
parent
f488eabb8f
commit
a184c88e9d
|
@ -13,6 +13,7 @@ namespace cocostudio {
|
|||
class ILocalizationManager
|
||||
{
|
||||
public:
|
||||
virtual ~ILocalizationManager() = default;
|
||||
virtual bool initLanguageData(std::string file) = 0;
|
||||
virtual std::string getLocalizationString(std::string key) = 0;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue