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:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-02-19 09:38:19 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-02-19 09:38:19 +0300
commite1051c5159d07d07d483d0acfc8036c7863b23d1 (patch)
tree8fb873516e27f67b78f58231c29879a350cbe9a5 /Apps/GbaGame.cs
parent24500d90a23ad969c4b0df1f3f932329878841da (diff)
Images for different consoles
Diffstat (limited to 'Apps/GbaGame.cs')
-rw-r--r--Apps/GbaGame.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/Apps/GbaGame.cs b/Apps/GbaGame.cs
new file mode 100644
index 00000000..c7b6404d
--- /dev/null
+++ b/Apps/GbaGame.cs
@@ -0,0 +1,29 @@
+using com.clusterrr.Famicom;
+using com.clusterrr.hakchi_gui.Properties;
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Drawing;
+using System.Drawing.Imaging;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Text.RegularExpressions;
+using System.Windows.Forms;
+using System.Xml.XPath;
+
+namespace com.clusterrr.hakchi_gui
+{
+ public class GbaGame : NesMiniApplication
+ {
+ public const char Prefix = 'A';
+ public static Image DefaultCover { get { return Resources.blank_gba; } }
+ public const string DefaultApp = "/bin/gba";
+
+ public GbaGame(string path, bool ignoreEmptyConfig)
+ : base(path, ignoreEmptyConfig)
+ {
+ }
+ }
+}
+