2
0

RenderTexture.cs 564 B

1234567891011121314
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. namespace BansheeEngine
  4. {
  5. /// <summary>
  6. /// Base class for all render textures of specific dimensions. Render textures allow the rendering to be performed
  7. /// into a texture as opposed to a frame buffer.
  8. /// </summary>
  9. public class RenderTexture : RenderTarget
  10. {
  11. }
  12. }