mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-16 05:05:09 +00:00
14 lines
325 B
C#
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";
|
|||
|
}
|
|||
|
}
|