EightBitNet/LR35902/LR35902.BlarggTest/Configuration.cs

14 lines
325 B
C#
Raw Normal View History

// <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";
}
}