mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 19:05:32 +00:00
7d840f1a42
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
20 lines
390 B
C++
20 lines
390 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <Register.h>
|
|
|
|
class Configuration {
|
|
public:
|
|
Configuration() = default;
|
|
|
|
bool isDebugMode() const { return m_debugMode; }
|
|
void setDebugMode(bool value) { m_debugMode = value; }
|
|
|
|
std::string getRomDirectory() const { return m_romDirectory; }
|
|
|
|
private:
|
|
bool m_debugMode = false;
|
|
std::string m_romDirectory = "roms\\searle";
|
|
};
|