10 lines
155 B
Go
10 lines
155 B
Go
|
package tins2020
|
||
|
|
||
|
import "github.com/veandco/go-sdl2/sdl"
|
||
|
|
||
|
type Control interface {
|
||
|
Init(*Context) error
|
||
|
Handle(*Context, sdl.Event)
|
||
|
Render(*Context)
|
||
|
}
|