up-editor/tiles.lua

10 lines
185 B
Lua
Raw Normal View History

2020-02-21 12:43:31 +01:00
local img_path = "img/"
tiles = {
2020-02-21 15:10:49 +01:00
love.graphics.newImage(img_path.."ground.png"),
love.graphics.newImage(img_path.."elevator1.png"),
2020-02-21 12:43:31 +01:00
}
2020-02-21 15:16:35 +01:00
tiles_char = { '0', '^' }
2020-02-21 12:43:31 +01:00
selected_tile = 1