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:
-rw-r--r--Apps/ArcadeGame.cs23
-rw-r--r--Apps/Atari2600Game.cs23
2 files changed, 46 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)
+ {
+ }
+ }
+}
+
diff --git a/Apps/Atari2600Game.cs b/Apps/Atari2600Game.cs
new file mode 100644
index 00000000..2a468e48
--- /dev/null
+++ b/Apps/Atari2600Game.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 Atari2600Game : NesMiniApplication
+ {
+ public override string GoogleSuffix
+ {
+ get
+ {
+ return "atari 2600";
+ }
+ }
+
+ public Atari2600Game(string path, bool ignoreEmptyConfig = false)
+ : base(path, ignoreEmptyConfig)
+ {
+ }
+ }
+}
+