summaryrefslogtreecommitdiffhomepage
path: root/mapicons.lua
diff options
context:
space:
mode:
Diffstat (limited to 'mapicons.lua')
-rw-r--r--mapicons.lua12
1 files changed, 0 insertions, 12 deletions
diff --git a/mapicons.lua b/mapicons.lua
deleted file mode 100644
index 4893da7..0000000
--- a/mapicons.lua
+++ /dev/null
@@ -1,12 +0,0 @@
--- Maps icons list generation file
--- REWORK NEEDED, it is so similar to `nautsicons.lua` they could be merged together into one function that returns icon quad sequences.
-local maps = require "maplist"
-local w, h = 532, 37
-local icons = {}
-
-local i = 0
-for _,map in pairs(maps) do
- icons[map] = love.graphics.newQuad(i*76, 0, 76, 37, w, h)
- i = i + 1
-end
-return icons