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

UnsupportedMapperException.cs - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d71ec3617d3f6f3a9bf280c7ffe38eb4c078cc9 (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 UnsupportedMapperException : Exception
    {
        public readonly NesFile ROM;
        public UnsupportedMapperException(NesFile nesFile)
        {
            ROM = nesFile;
        }
    }
}