Add src/xmbconfig.h
This commit is contained in:
parent
8bd584b5a1
commit
d6f9b30f06
25
src/xmbconfig.h
Normal file
25
src/xmbconfig.h
Normal file
@ -0,0 +1,25 @@
|
||||
#pragma once
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
|
||||
class XmbConfig {
|
||||
public:
|
||||
bool load();
|
||||
|
||||
QStringList order() const { return m_order; }
|
||||
|
||||
QString iconPath() const { return m_iconPath; }
|
||||
QString soundPath() const { return m_soundPath; }
|
||||
QString fontBoot() const { return m_fontBoot; }
|
||||
QString bootAnimation() const { return m_bootAnimation; }
|
||||
|
||||
int fps() const { return m_fps; }
|
||||
|
||||
private:
|
||||
QStringList m_order;
|
||||
QString m_iconPath;
|
||||
QString m_soundPath;
|
||||
QString m_fontBoot;
|
||||
QString m_bootAnimation;
|
||||
int m_fps = 60;
|
||||
};
|
||||
Loading…
x
Reference in New Issue
Block a user