Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UnsupportedFourScreenException.cs - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1a4fa341499d8b02e9be046e28de261d706fa69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using com.clusterrr.Famicom;
using System;

namespace com.clusterrr.hakchi_gui
{
    public class UnsupportedFourScreenException : Exception
    {
        public readonly NesFile ROM;
        public UnsupportedFourScreenException(NesFile nesFile)
        {
            ROM = nesFile;
        }
    }
}