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

10 lines
190 B
C#
Raw Permalink Normal View History

using Microsoft.Xna.Framework.Graphics;
namespace FSO.Files.Utils
{
public interface IWorldTextureProvider
{
WorldTexture GetWorldTexture(GraphicsDevice device);
}
}