Skip to content
This repository has been archived by the owner on Sep 18, 2022. It is now read-only.

Commit

Permalink
Added IRenderable
Browse files Browse the repository at this point in the history
  • Loading branch information
craftersmine committed Feb 27, 2019
1 parent 4080577 commit da5144a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions craftersmine.EtherEngine.Core/IRenderable.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using craftersmine.EtherEngine.Content;
using craftersmine.EtherEngine.Rendering;

namespace craftersmine.EtherEngine.Core
{
public interface IRenderable
{
Texture Texture { get; set; }
Transform Transform { get; set; }

void OnRender(GLGDI renderer);
}
}

0 comments on commit da5144a

Please sign in to comment.