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-03-29 01:25:16 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-29 01:25:16 +0300
commit24145e9db04513d15b7cb60f033a9e9d863f5de7 (patch)
treeb7c6f4edd6b12f7439d65c6a3cbbc8bfc67bc212 /NesDefaultGame.cs
parent99ad7ec16c71750a577b7604206864ed4b23da76 (diff)
On-the-fly tar archiving, it's using not so much memory now. And faster.
Diffstat (limited to 'NesDefaultGame.cs')
-rw-r--r--NesDefaultGame.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/NesDefaultGame.cs b/NesDefaultGame.cs
index 6d4fae29..b3ee8c04 100644
--- a/NesDefaultGame.cs
+++ b/NesDefaultGame.cs
@@ -22,5 +22,13 @@ namespace com.clusterrr.hakchi_gui
{
return Name;
}
+
+ private int size;
+
+ public int Size
+ {
+ get { return size; }
+ set { size = value; }
+ }
}
}