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-01-25 14:16:58 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-01-25 14:16:58 +0300
commit5dc67c2d6c0aa1c156abcce8bbf37cce09ad6421 (patch)
tree70f94462a6bf5a32f0cd9ebc3a90d070936cb929 /NesDefaultGame.cs
parent71adfb785a91fc65f1462a8b48d2ebfa002f4199 (diff)
Folders/pages support! No more games limit.
Diffstat (limited to 'NesDefaultGame.cs')
-rw-r--r--NesDefaultGame.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/NesDefaultGame.cs b/NesDefaultGame.cs
new file mode 100644
index 00000000..04da5be7
--- /dev/null
+++ b/NesDefaultGame.cs
@@ -0,0 +1,30 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace com.clusterrr.hakchi_gui
+{
+ public class NesDefaultGame : INesMenuElement
+ {
+ private string code;
+
+ public string Code
+ {
+ get { return code; }
+ set { code = value; }
+ }
+ private string name;
+
+ public string Name
+ {
+ get { return name; }
+ set { name = value; }
+ }
+
+ public override string ToString()
+ {
+ return Name;
+ }
+ }
+}