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/FelLib
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-14 19:21:06 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-14 19:21:06 +0300
commite611921d01a88946b13931cf83e17713e950e96d (patch)
tree58d1c11bc33c84311a5862439aa3f31620aaff1d /FelLib
parent56a9336cab8361650aa3190e56e1f6620e9f79c7 (diff)
Games uploading via Clovershell
Diffstat (limited to 'FelLib')
-rw-r--r--FelLib/Fel.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/FelLib/Fel.cs b/FelLib/Fel.cs
index d525edd1..f21f7bb8 100644
--- a/FelLib/Fel.cs
+++ b/FelLib/Fel.cs
@@ -9,7 +9,7 @@ using System.Threading;
namespace com.clusterrr.FelLib
{
- public class Fel
+ public class Fel : IDisposable
{
public byte[] Fes1Bin;
byte[] uBootBin;
@@ -417,5 +417,10 @@ namespace com.clusterrr.FelLib
}
}
}
+
+ public void Dispose()
+ {
+ Close();
+ }
}
}