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