10 lines
170 B
Lua
10 lines
170 B
Lua
|
return function(ctx)
|
||
|
ctx
|
||
|
:with({ name="default:cobble" })
|
||
|
:polygon({
|
||
|
-- x, y (triangle)
|
||
|
{0,0},
|
||
|
{0,10},
|
||
|
{10,0}
|
||
|
}, true)
|
||
|
end
|