KumiScript/renderer/IDrawable.cs

11 lines
222 B
C#
Raw Normal View History

2024-01-26 05:37:51 +00:00
namespace KumiScript.Renderer
{
public interface IDrawable
{
void Draw(int x, int y);
int GetBitmapWidth();
int GetBitmapHeight();
int GetXOffset();
int GetYOffset();
}
}