12 lines
177 B
Go
12 lines
177 B
Go
|
package application
|
||
|
|
||
|
type Event interface { }
|
||
|
|
||
|
type EventPress Button
|
||
|
type EventRelease Button
|
||
|
type EventResize struct { }
|
||
|
type EventMouseMove struct {
|
||
|
X int
|
||
|
Y int
|
||
|
}
|