5 lines
70 B
Go
5 lines
70 B
Go
package canvas
|
|
|
|
type Backend interface {
|
|
ClearRect(x, y, w, h int)
|
|
}
|