CurrencyAlertClassic/KamiLib/Interfaces/IDrawable.cs

6 lines
81 B
C#
Raw Normal View History

2023-10-13 09:38:52 +00:00
namespace KamiLib.Interfaces;
public interface IDrawable
{
void Draw();
}