mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
10 lines
265 B
C#
10 lines
265 B
C#
|
|
using System.IO;
|
||
|
|
using System.Reflection;
|
||
|
|
|
||
|
|
namespace DiscImageChef.Gui
|
||
|
|
{
|
||
|
|
static class ResourceHandler
|
||
|
|
{
|
||
|
|
internal static Stream GetResourceStream(string resourcePath) => Assembly.GetExecutingAssembly().GetManifestResourceStream(resourcePath);
|
||
|
|
}
|
||
|
|
}
|