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

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Apps/ArcadeGame.cs')
-rw-r--r--Apps/ArcadeGame.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/Apps/ArcadeGame.cs b/Apps/ArcadeGame.cs
new file mode 100644
index 00000000..f9306912
--- /dev/null
+++ b/Apps/ArcadeGame.cs
@@ -0,0 +1,23 @@
+#pragma warning disable 0108
+using com.clusterrr.hakchi_gui.Properties;
+using System.Drawing;
+
+namespace com.clusterrr.hakchi_gui
+{
+ public class ArcadeGame : NesMiniApplication
+ {
+ public override string GoogleSuffix
+ {
+ get
+ {
+ return "arcade";
+ }
+ }
+
+ public ArcadeGame(string path, bool ignoreEmptyConfig = false)
+ : base(path, ignoreEmptyConfig)
+ {
+ }
+ }
+}
+