aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/EmbeddedResource.cs
blob: ba6624991ed46146d295b1b18799476087e80750 (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();
            }
        }
    }
}