blob: eb60463b21b169d7f185bd209665c89b69a08495 (
plain)
1
2
3
4
5
6
7
8
|
package ui
type Drawable interface {
// Called when this renderable should draw itself
Draw(ctx Context)
// Specifies a function to call when this cell needs to be redrawn
OnInvalidate(callback func(d Drawable))
}
|