KumiScript/renderer/IDrawable.cs
2024-01-25 23:37:51 -06:00

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