9 lines
170 B
C#
9 lines
170 B
C#
|
namespace KumiScript.Renderer
|
||
|
{
|
||
|
public interface IDrawable
|
||
|
{
|
||
|
void Draw(int x, int y);
|
||
|
int GetBitmapWidth();
|
||
|
int GetBitmapHeight();
|
||
|
}
|
||
|
}
|