encompass-cs/encompass-cs/Renderers/GeneralRenderer.cs

12 lines
368 B
C#
Raw Normal View History

2019-06-19 21:14:44 +00:00
namespace Encompass
{
/// <summary>
/// GeneralRenderer is a Renderer which generically reads the game state in order to draw elements to the screen.
/// GeneralRenderers have a layer specified when they are added to the World.
/// </summary>
public abstract class GeneralRenderer : Renderer
2019-06-19 21:14:44 +00:00
{
public abstract void Render();
}
}