From dc377c36a5ce655103a4baa3c191d0bc4e84e798 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Wed, 2 Aug 2023 01:37:03 -0400 Subject: [PATCH] Add function keys up to F24 --- input/input.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/input/input.go b/input/input.go index b6de402..5fe18f4 100644 --- a/input/input.go +++ b/input/input.go @@ -59,6 +59,18 @@ const ( KeyF10 Key = 138 KeyF11 Key = 139 KeyF12 Key = 140 + KeyF13 Key = 141 + KeyF14 Key = 142 + KeyF15 Key = 143 + KeyF16 Key = 144 + KeyF17 Key = 145 + KeyF18 Key = 146 + KeyF19 Key = 147 + KeyF20 Key = 148 + KeyF21 Key = 149 + KeyF22 Key = 150 + KeyF23 Key = 151 + KeyF24 Key = 152 ) // Button represents a mouse button.