23 lines
200 B
C#
23 lines
200 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace GoldPrinter
|
|
{
|
|
public interface IDraw
|
|
{
|
|
Graphics Graphics
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
Rectangle Rectangle
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
void Draw();
|
|
}
|
|
}
|