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; } }