KumiScript/renderer/IDrawable.cs

9 lines
170 B
C#

namespace KumiScript.Renderer
{
public interface IDrawable
{
void Draw(int x, int y);
int GetBitmapWidth();
int GetBitmapHeight();
}
}