InputChars (#403)

This implements #400
This commit is contained in:
Jake
2017-08-14 12:11:51 -07:00
committed by Hajime Hoshi
parent 93173506f5
commit 0d703ca3d4
7 changed files with 101 additions and 2 deletions
+4
View File
@@ -28,6 +28,10 @@ type Input struct {
m sync.RWMutex
}
func (i *Input) RuneBuffer() []rune {
return nil
}
func (i *Input) IsKeyPressed(key Key) bool {
return false
}