mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
15 lines
152 B
Go
15 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
|
||
|
}
|