ebiten/internal/ui/keys.go

92 lines
1.2 KiB
Go
Raw Normal View History

2015-01-01 19:29:51 +01:00
// Copyright 2015 Hajime Hoshi
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2015-01-07 15:21:52 +01:00
// DO NOT EDIT: This file is auto-generated by genkeys.go.
2015-01-01 19:29:51 +01:00
package ui
type Key int
const (
2015-01-06 18:25:26 +01:00
Key0 Key = iota
Key1
Key2
Key3
Key4
Key5
Key6
Key7
Key8
Key9
KeyA
KeyB
KeyC
2015-01-07 03:00:15 +01:00
KeyD
KeyE
KeyF
KeyG
KeyH
KeyI
KeyJ
KeyK
KeyL
KeyM
KeyN
KeyO
KeyP
KeyQ
KeyR
KeyS
KeyT
KeyU
KeyV
KeyW
KeyX
KeyY
KeyZ
2015-01-07 15:18:40 +01:00
KeyAlt
2015-01-07 03:22:25 +01:00
KeyBackspace
2015-01-06 18:25:26 +01:00
KeyCapsLock
KeyComma
2015-01-07 15:18:40 +01:00
KeyControl
2015-01-06 18:25:26 +01:00
KeyDelete
2015-01-01 19:29:51 +01:00
KeyDown
2015-01-06 18:25:26 +01:00
KeyEnd
KeyEnter
KeyEscape
KeyF1
KeyF2
KeyF3
KeyF4
KeyF5
KeyF6
KeyF7
KeyF8
KeyF9
2015-01-07 03:00:15 +01:00
KeyF10
KeyF11
KeyF12
2015-01-06 18:25:26 +01:00
KeyHome
KeyInsert
2015-01-01 19:29:51 +01:00
KeyLeft
2015-01-06 18:25:26 +01:00
KeyPageDown
KeyPageUp
KeyPeriod
2015-01-01 19:29:51 +01:00
KeyRight
2015-01-07 15:18:40 +01:00
KeyShift
2015-01-01 19:29:51 +01:00
KeySpace
2015-01-06 18:25:26 +01:00
KeyTab
KeyUp
2015-01-01 19:29:51 +01:00
)