diff options
Diffstat (limited to 'client/util.lua')
-rw-r--r-- | client/util.lua | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/client/util.lua b/client/util.lua index 2c7d90a..a1c4b35 100644 --- a/client/util.lua +++ b/client/util.lua @@ -13,6 +13,19 @@ local function print_good(str,x,y) love.graphics.draw(text,x,y) end +local tile_names = { + 'red', + 'orange', + 'yellow', + 'green', + 'teal', + 'blue', + 'purple', + 'grey', + 'ubqorange', +} + return { - print_good=print_good + print_good=print_good, + tile_names=tile_names, } |