Leveling system

This commit is contained in:
Alexey 2025-06-25 16:51:23 +03:00
commit efe9f386bd
6 changed files with 83 additions and 26 deletions

9
levels/test.lua Normal file
View file

@ -0,0 +1,9 @@
return {
width = 5,
height = 5,
lines = {
{ 1, 1, 3, 3, "green" },
{ 1, 5, 5, 2, "red" },
{ 2, 5, 5, 3, "blue" }
}
}

9
levels/test2.lua Normal file
View file

@ -0,0 +1,9 @@
return {
width = 4,
height = 4,
lines = {
{ 1, 1, 2, 2, "red" },
{ 4, 1, 4, 4, "green" },
{ 1, 2, 1, 4, "blue" }
}
}