smrendererv3/SMCode/SM.Base/Scene/IShowItem.cs
Michel Fedde 589d131246 17.09.2020
+ Generic Scene
+ Generic Camera
+ Generic Window
+ Contexts for drawing and updateing

+ very basic 2D-implermention
2020-09-17 21:28:16 +02:00

10 lines
No EOL
182 B
C#

using SM.Base.Contexts;
namespace SM.Base.Scene
{
public interface IShowItem
{
void Update(UpdateContext context);
void Draw(DrawContext context);
}
}