KumiScript/renderer/IDrawable.cs

9 lines
170 B
C#
Raw Permalink 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();
}
}