mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-04 12:05:03 +00:00
9 lines
152 B
C++
9 lines
152 B
C++
|
#include "stdafx.h"
|
||
|
#include "Configuration.h"
|
||
|
|
||
|
Configuration::Configuration()
|
||
|
: m_debugMode(false),
|
||
|
m_profileMode(false),
|
||
|
m_romDirectory("roms") {
|
||
|
}
|