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