1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 15:06:06 +00:00

Pour compil gtk

This commit is contained in:
Yan Maniez 2019-04-30 23:37:14 +02:00
parent 7e84ba5296
commit a1fe2a71c5

View file

@ -36,5 +36,20 @@ namespace AideDeJeu.GTK
var path = AppDomain.CurrentDomain.BaseDirectory; // System.Reflection.Assembly.GetExecutingAssembly().CodeBase;
return Path.Combine(path, $"{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();
}
}
}