redo-event-system #1

Merged
sashakoshka merged 7 commits from redo-event-system into main 2022-11-09 16:54:11 -07:00
Showing only changes of commit b60d7518e0 - Show all commits

11
event.go Normal file
View File

@ -0,0 +1,11 @@
package application
type Event interface { }
type EventPress Button
type EventRelease Button
type EventResize struct { }
type EventMouseMove struct {
X int
Y int
}