mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-20 00:41:20 +00:00
10 lines
190 B
C#
10 lines
190 B
C#
|
using Microsoft.Xna.Framework.Graphics;
|
|||
|
|
|||
|
namespace FSO.Files.Utils
|
|||
|
{
|
|||
|
public interface IWorldTextureProvider
|
|||
|
{
|
|||
|
WorldTexture GetWorldTexture(GraphicsDevice device);
|
|||
|
}
|
|||
|
}
|