Moved more rendering things into render namespace.

This commit is contained in:
Harrison Deng 2020-02-20 16:33:45 -05:00
parent 1ca9ad5377
commit 8f56b94c1f
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
using OpenTK;
namespace RecrownedGTK.Graphics {
namespace RecrownedGTK.Graphics.Render {
public interface IDrawable
{
/// <summary>

View File

@ -1,6 +1,6 @@
using RecrownedGTK.Types;
using OpenTK.Graphics;
namespace RecrownedGTK.Graphics {
namespace RecrownedGTK.Graphics.Render {
public class RectTexture : Rectangle, IDrawable {
private VertexInformation[] vertices;
private TextureData textureData;