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

14 lines
261 B
C#
Raw Permalink Normal View History

using Microsoft.Xna.Framework.Graphics;
namespace FSO.Files.Utils
{
/// <summary>
/// A texture used in the game world.
/// </summary>
public class WorldTexture
{
public Texture2D Pixel;
public Texture2D ZBuffer;
}
}