9 lines
91 B
Go
9 lines
91 B
Go
package control
|
|
|
|
const (
|
|
MouseLeft MouseButton = iota
|
|
MouseRight
|
|
)
|
|
|
|
type MouseButton int
|