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);
|
|
}
|
|
} |