mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
12 lines
200 B
Lua
12 lines
200 B
Lua
|
|
||
|
return function(filepath)
|
||
|
local brush_size = { x = 0, y = 0 }
|
||
|
local brush = { }
|
||
|
|
||
|
-- TODO: Import brush here
|
||
|
|
||
|
return false, "Error: Not implemented yet"
|
||
|
|
||
|
-- return true, brush, brush_size
|
||
|
end
|