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
path: root/Apps
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-15 04:10:25 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-15 04:10:25 +0300
commitc80447c3eaa0b1bab4aff7b6500293f782678ec7 (patch)
tree42bfca42fda8583254b9912eb8616bbaaf006212 /Apps
parentb1b186a29608c87eb7c6ecb314ade8cbddbbd1af (diff)
Forgot some files
Diffstat (limited to 'Apps')
-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)
+ {
+ }
+ }
+}
+