14 lines
152 B
Go
14 lines
152 B
Go
package types
|
|
|
|
type Button struct {
|
|
Name string
|
|
Code int
|
|
Keysym int
|
|
}
|
|
|
|
type Key struct {
|
|
Name string
|
|
Value string
|
|
Code int
|
|
Keysym int
|
|
}
|