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

PceGame.cs « Apps - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49036d4aa1fc573adb0cfa25296e462ebd98b08a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma warning disable 0108
using com.clusterrr.hakchi_gui.Properties;
using System.Drawing;

namespace com.clusterrr.hakchi_gui
{
    public class PceGame : NesMiniApplication
    {
        public override string GoogleSuffix
        {
            get
            {
                return "(pce | pc engine | turbografx 16)";
            }
        }

        public PceGame(string path, bool ignoreEmptyConfig = false)
            : base(path, ignoreEmptyConfig)
        {
        }
    }
}