laptop/init.lua

32 lines
720 B
Lua
Raw Normal View History

2017-06-17 17:20:09 -04:00
laptop = {
activefilter = {},
active_search_direction = {},
alternate = {},
current_page = {},
current_searchbox = {},
current_index = {},
current_item = {},
current_craft_direction = {},
registered_craft_types = {},
crafts_for = {usage = {}, recipe = {} },
players = {},
items_list_size = 0,
items_list = {},
filtered_items_list_size = {},
filtered_items_list = {},
pages = {},
buttons = {},
pagecols = 8,
pagerows = 10,
page_y = 0,
formspec_y = 1,
main_button_x = 0,
main_button_y = 9,
craft_result_x = 0.3,
craft_result_y = 0.5,
form_header_y = 0
}
2017-06-17 14:58:35 -04:00
dofile(minetest.get_modpath('laptop')..'/nodes.lua')
2017-06-17 17:20:09 -04:00
dofile(minetest.get_modpath('laptop')..'/formspecs.lua')