summaryrefslogtreecommitdiffhomepage
path: root/nautsicons.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nautsicons.lua')
-rw-r--r--nautsicons.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/nautsicons.lua b/nautsicons.lua
deleted file mode 100644
index 6c09a8f..0000000
--- a/nautsicons.lua
+++ /dev/null
@@ -1,11 +0,0 @@
--- Spritesheet for character portraits
-local nauts = require "nautslist"
-local w, h = 1008, 27
-local icons = {}
-
-local i = 0
-for _,naut in pairs(nauts) do
- icons[naut] = love.graphics.newQuad(i*28, 0, 28, 27, w, h)
- i = i + 1
-end
-return icons