aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/EmbeddedResource.cs
blob: 45b77da71ca0d4cb41b9007b56f848760388c44a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.IO;
using System.Reflection;

namespace Ryujinx.Graphics.Gal
{
    static class EmbeddedResource
    {
        public static string GetString(string Name)
        {
            Assembly Asm = typeof(EmbeddedResource).Assembly;

            using (Stream ResStream = Asm.GetManifestResourceStream(Name))
            {
                StreamReader Reader = new StreamReader(ResStream);

                return Reader.ReadToEnd();
            }
        }
    }
}