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:
Diffstat (limited to 'Apps')
-rw-r--r--Apps/AppTypeCollection.cs8
-rw-r--r--Apps/GameGearGame.cs23
2 files changed, 31 insertions, 0 deletions
diff --git a/Apps/AppTypeCollection.cs b/Apps/AppTypeCollection.cs
index fd38a69d..a405de32 100644
--- a/Apps/AppTypeCollection.cs
+++ b/Apps/AppTypeCollection.cs
@@ -109,6 +109,14 @@ namespace com.clusterrr.hakchi_gui
DefaultApp = "/bin/pce",
Prefix = 'E',
DefaultCover = Resources.blank_pce
+ },
+ new AppInfo
+ {
+ Class = typeof(GameGearGame),
+ Extensions = new string[] {".gg"},
+ DefaultApp = "/bin/gg",
+ Prefix = 'R',
+ DefaultCover = Resources.blank_app // TODO: icon for GameGear
}
};
diff --git a/Apps/GameGearGame.cs b/Apps/GameGearGame.cs
new file mode 100644
index 00000000..c07dd60b
--- /dev/null
+++ b/Apps/GameGearGame.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 GameGearGame : NesMiniApplication
+ {
+ public override string GoogleSuffix
+ {
+ get
+ {
+ return "game gear";
+ }
+ }
+
+ public GameGearGame(string path, bool ignoreEmptyConfig = false)
+ : base(path, ignoreEmptyConfig)
+ {
+ }
+ }
+}
+