diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-05-14 22:30:41 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-05-14 22:30:41 -0500 |
commit | 7e469de9bc435b622eb415bf403727780ff95f4c (patch) | |
tree | 338a04bed2d022a72111cc1c2c4525f517b8772d /src/paperflight/static/levels.js | |
parent | 67d08e1f07d6eb261b98e90e6c803d64c22c1969 (diff) |
Add switchable vents
Diffstat (limited to 'src/paperflight/static/levels.js')
-rw-r--r-- | src/paperflight/static/levels.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/paperflight/static/levels.js b/src/paperflight/static/levels.js index 70bd326..bf3a301 100644 --- a/src/paperflight/static/levels.js +++ b/src/paperflight/static/levels.js @@ -56,4 +56,10 @@ levels[6].items.push( constructRect(300, 400, 60, 60, 0), constructRect(400, 400, 60, 60, 1), constructRect(500, 400, 60, 60, 2), +) + +levels[7] = createLevel("Turn on the vent", 0, 40, 460) +levels[7].items.push( + constructSwitch(120, 400, 30, 60, 2), + constructVent(200, 550, 60, 300, 1), )
\ No newline at end of file |