From 7747c5b4bb712f1aa3b7e4c28e23fde46ccc0c9a Mon Sep 17 00:00:00 2001 From: Yan Maniez Date: Tue, 7 May 2019 10:57:00 +0200 Subject: [PATCH] Patch ios --- AideDeJeu/AideDeJeu.iOS/NativeAPI.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/AideDeJeu/AideDeJeu.iOS/NativeAPI.cs b/AideDeJeu/AideDeJeu.iOS/NativeAPI.cs index 19b01b96..ad965f03 100644 --- a/AideDeJeu/AideDeJeu.iOS/NativeAPI.cs +++ b/AideDeJeu/AideDeJeu.iOS/NativeAPI.cs @@ -27,5 +27,20 @@ namespace AideDeJeu.iOS { return NSBundle.MainBundle.PathForResource(databaseName, "db"); } + + public Task SaveStreamAsync(string filename, Stream stream) + { + throw new NotImplementedException(); + } + + public Stream CreateStream(string filename) + { + throw new NotImplementedException(); + } + + public Task LaunchFileAsync(string title, string message, string filePath) + { + throw new NotImplementedException(); + } } } \ No newline at end of file