mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-19 08:52:15 -07:00
11 lines
258 B
C++
11 lines
258 B
C++
#include "debug_settings.h"
|
|
|
|
DebugSettings::DebugSettings(const QString &settingPath, QObject *parent)
|
|
: SettingsManager(settingPath + "debug.ini", parent)
|
|
{
|
|
}
|
|
|
|
bool DebugSettings::getShowCardId()
|
|
{
|
|
return getValue("showCardId", "debug").toBool();
|
|
}
|