From bc3ae8bd07f78dbf8dc8afd7cd151f457200f578 Mon Sep 17 00:00:00 2001 From: Alexey 'Cluster' Avdyukhin Date: Fri, 24 Feb 2017 11:47:04 +0300 Subject: Sega 32x added, images required --- Apps/AppTypeCollection.cs | 10 +++++++++- Apps/Sega32XGame.cs | 23 +++++++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 Apps/Sega32XGame.cs (limited to 'Apps') diff --git a/Apps/AppTypeCollection.cs b/Apps/AppTypeCollection.cs index 1ce2b9d9..0464aee1 100644 --- a/Apps/AppTypeCollection.cs +++ b/Apps/AppTypeCollection.cs @@ -79,6 +79,14 @@ namespace com.clusterrr.hakchi_gui DefaultCover = Resources.blank_genesis }, new AppInfo + { + Class = typeof(Sega32XGame), + Extensions = new string[] { ".32x" }, + DefaultApp = "/bin/32x", + Prefix = '3', + DefaultCover = Resources.blank_genesis // TODO: icon for 32X + }, + new AppInfo { Class = typeof(GbGame), Extensions = new string[] { ".gb" }, @@ -116,7 +124,7 @@ namespace com.clusterrr.hakchi_gui Extensions = new string[] {".gg"}, DefaultApp = "/bin/gg", Prefix = 'R', - DefaultCover = Resources.blank_app // TODO: icon for GameGear + DefaultCover = Resources.blank_sms // TODO: icon for GameGear } }; diff --git a/Apps/Sega32XGame.cs b/Apps/Sega32XGame.cs new file mode 100644 index 00000000..fc4c8f9d --- /dev/null +++ b/Apps/Sega32XGame.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 Sega32XGame : NesMiniApplication + { + public override string GoogleSuffix + { + get + { + return "sega 32x"; + } + } + + public Sega32XGame(string path, bool ignoreEmptyConfig = false) + : base(path, ignoreEmptyConfig) + { + } + } +} + -- cgit v1.2.3