Upgrade sdl version, implement embed rendering, and more!

This commit is contained in:
2022-11-13 10:34:59 -05:00
parent b1dd2b71d8
commit db57432d41
14 changed files with 429 additions and 257 deletions

View File

@ -1,8 +1,8 @@
package input
type InputHandler interface {
IsKeyDown(uint) bool
IsKeyJustPressed(uint) bool
IsKeyJustReleased(uint) bool
IsKeyDown(uint32) bool
IsKeyJustPressed(uint32) bool
IsKeyJustReleased(uint32) bool
Update(delta float64) error
}