Leveling system
This commit is contained in:
parent
362a4e39ee
commit
efe9f386bd
6 changed files with 83 additions and 26 deletions
9
levels/test.lua
Normal file
9
levels/test.lua
Normal 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
9
levels/test2.lua
Normal 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" }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue