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