stone/event.go

13 lines
224 B
Go
Raw Normal View History

2022-11-08 23:18:56 -07:00
package stone
2022-11-08 23:12:47 -07:00
type Event interface { }
2022-11-08 23:18:56 -07:00
type EventQuit struct { }
type EventPress struct { Button }
type EventRelease struct { Button }
2022-11-08 23:12:47 -07:00
type EventResize struct { }
type EventMouseMove struct {
X int
Y int
}