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