diff options
| author | ne_mene <[email protected]> | 2026-04-05 01:38:46 +0200 |
|---|---|---|
| committer | ne_mene <[email protected]> | 2026-04-05 01:38:46 +0200 |
| commit | 541c9acb3877bebde96a3d6f3586c57cf9ffc3a4 (patch) | |
| tree | eca39216eba908d88e84dc7c1edc1b10ac78c760 /src | |
| parent | 2c4dd247e3a7621e3cc3fd0c46927d8daf12e0d5 (diff) | |
love.keyboard and love.mouse shortening
Diffstat (limited to 'src')
| -rw-r--r-- | src/init.lua | 2 | ||||
| -rw-r--r-- | src/input.lua | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/init.lua b/src/init.lua index 824229d..07eedfc 100644 --- a/src/init.lua +++ b/src/init.lua @@ -32,6 +32,8 @@ la = love.audio lg = love.graphics lf = love.filesystem lw = love.window +lk = love.keyboard +lm = love.mouse lmath = love.math function init_global_systems() diff --git a/src/input.lua b/src/input.lua index 7c625ed..fd12d9c 100644 --- a/src/input.lua +++ b/src/input.lua @@ -1,6 +1,3 @@ -local lk = love.keyboard -local lm = love.mouse - local inputs = {} local keyEvents = {} local mouseEvents = {} |
