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 { }
|
2022-11-14 21:15:21 -07:00
|
|
|
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
|
|
|
|
}
|