Show media type logo in GUI's media info.

This commit is contained in:
2018-09-09 11:28:57 +01:00
parent 91522b7b04
commit b5e4f4d3ca
8 changed files with 143 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
using System.IO;
using System.Reflection;
namespace DiscImageChef.Gui
{
static class ResourceHandler
{
internal static Stream GetResourceStream(string resourcePath) => Assembly.GetExecutingAssembly().GetManifestResourceStream(resourcePath);
}
}