2018-02-16 05:05:07 +00:00
|
|
|
package ui
|
|
|
|
|
|
|
|
type Drawable interface {
|
|
|
|
// Called when this renderable should draw itself
|
2018-02-17 20:21:22 +00:00
|
|
|
Draw(ctx *Context)
|
2018-02-16 05:05:07 +00:00
|
|
|
// Specifies a function to call when this cell needs to be redrawn
|
|
|
|
OnInvalidate(callback func(d Drawable))
|
2018-02-17 21:35:36 +00:00
|
|
|
// Invalidates the drawable
|
|
|
|
Invalidate()
|
2018-02-16 05:05:07 +00:00
|
|
|
}
|