2016-10-14 11:33:58 +08:00
|
|
|
|
using System;
|
2016-10-08 03:09:52 +08:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
2016-10-14 11:33:58 +08:00
|
|
|
|
namespace osu.Game.Tests.Resources
|
|
|
|
|
{
|
|
|
|
|
public static class Resource
|
|
|
|
|
{
|
|
|
|
|
public static Stream OpenResource(string name)
|
|
|
|
|
{
|
2016-10-24 23:27:47 +08:00
|
|
|
|
var localPath = Path.GetDirectoryName(Uri.UnescapeDataString(new UriBuilder(Assembly.GetExecutingAssembly().CodeBase).Path));
|
|
|
|
|
|
|
|
|
|
return Assembly.GetExecutingAssembly().GetManifestResourceStream($@"osu.Game.Tests.Resources.{name}") ??
|
|
|
|
|
Assembly.LoadFrom(Path.Combine(localPath, @"osu.Game.Resources.dll")).GetManifestResourceStream($@"osu.Game.Resources.{name}");
|
2016-10-14 11:33:58 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-08 03:09:52 +08:00
|
|
|
|
}
|