using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BansheeEngine { /// /// Base class for all render textures of specific dimensions. Render textures allow the rendering to be performed /// into a texture as opposed to a frame buffer. /// public class RenderTexture : RenderTarget { } }