mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-19 08:21:22 +00:00
10 lines
177 B
C#
10 lines
177 B
C#
|
using Microsoft.Xna.Framework.Graphics;
|
|||
|
|
|||
|
namespace FSO.Files.Utils
|
|||
|
{
|
|||
|
public interface ITextureProvider
|
|||
|
{
|
|||
|
Texture2D GetTexture(GraphicsDevice device);
|
|||
|
}
|
|||
|
}
|