read if gay

This commit is contained in:
Crispy 2025-06-01 02:23:34 +02:00
parent 4f2631b349
commit 61eefcba8c
24 changed files with 21871 additions and 4224 deletions

14
computer/20/keybinds.lua Normal file
View file

@ -0,0 +1,14 @@
nav = { up = {}, down = {}, left = {}, right = {}, confirm = {} }
nav.up[keys.up] = 1
nav.up[keys.w] = 1
nav.up[keys.f] = 1
nav.left[keys.left] = 1
nav.left[keys.a] = 1
nav.left[keys.r] = 1
nav.down[keys.down] = 1
nav.down[keys.s] = 1
nav.right[keys.right] = 1
nav.right[keys.d] = 1
nav.right[keys.t] = 1
nav.confirm[keys.enter] = 1
nav.confirm[keys.space] = 1