+ Generic Scene + Generic Camera + Generic Window + Contexts for drawing and updateing + very basic 2D-implermention
10 lines
No EOL
182 B
C#
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);
|
|
}
|
|
} |