1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-07-03 09:26:27 +02:00
MLEM/Tests/Stub/StubContent.cs

18 lines
462 B
C#
Raw Normal View History

2020-07-31 17:14:25 +02:00
using System.Collections.Generic;
using Microsoft.Xna.Framework.Content;
namespace Tests.Stub {
public class StubContent : ContentManager {
private readonly Dictionary<string, object> assets;
public StubContent(Dictionary<string, object> assets) : base(new StubServices()) {
this.assets = assets;
}
public override T Load<T>(string assetName) {
return (T) this.assets[assetName];
}
}
}