mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 05:10:50 +01:00
24 lines
No EOL
730 B
C#
24 lines
No EOL
730 B
C#
using System.IO;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
namespace MLEM.Data.Content {
|
|
/// <inheritdoc />
|
|
public class Texture2DReader : RawContentReader<Texture2D> {
|
|
|
|
/// <inheritdoc />
|
|
protected override Texture2D Read(RawContentManager manager, string assetPath, Stream stream, Texture2D existing) {
|
|
if (existing != null) {
|
|
existing.Reload(stream);
|
|
return existing;
|
|
} else {
|
|
return Texture2D.FromStream(manager.GraphicsDevice, stream);
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override string[] GetFileExtensions() {
|
|
return new[] {"png", "bmp", "gif", "jpg", "tif", "dds"};
|
|
}
|
|
|
|
}
|
|
} |