mysimulation/server/tso.files/Utils/ITextureProvider.cs

10 lines
177 B
C#
Raw Permalink Normal View History

using Microsoft.Xna.Framework.Graphics;
namespace FSO.Files.Utils
{
public interface ITextureProvider
{
Texture2D GetTexture(GraphicsDevice device);
}
}