mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
19 lines
265 B
C++
19 lines
265 B
C++
#ifndef APPSETTINGS_H
|
|
#define APPSETTINGS_H
|
|
|
|
#include "word.h"
|
|
|
|
class AppSettings
|
|
{
|
|
public:
|
|
Word::Type wordTypeMask() {
|
|
return m_wordTypeMask;
|
|
}
|
|
|
|
private:
|
|
AppSettings();
|
|
Word::Type m_wordTypeMask = Word::Default;
|
|
};
|
|
|
|
#endif // APPSETTINGS_H
|