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