EightBitNet/LR35902/LR35902.BlarggTest/Configuration.cs
Adrian Conlon ead54b0468 Wire up the LR35902 Blargg GameBoy test runner. Not working yet...
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-07-24 23:48:19 +01:00

14 lines
325 B
C#

// <copyright file="Configuration.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace LR35902.BlarggTest
{
public class Configuration
{
public bool DebugMode { get; set; } = false;
public string RomDirectory { get; set; } = "roms";
}
}