#ifndef MOD_QUEST_LOOT_SHARE_H
#define MOD_QUEST_LOOT_SHARE_H

class QuestLootShare
{
public:
    static QuestLootShare* instance()
    {
        static QuestLootShare instance;
        return &instance;
    }

    void LoadConfig();

    bool IsEnabled() const { return _enabled; }

private:
    bool _enabled = true;
};

#define sQuestLootShare QuestLootShare::instance()

#endif