summaryrefslogtreecommitdiff
path: root/framework.lua
diff options
context:
space:
mode:
authorcheapie <no-email-for-you@example.com>2023-08-04 11:25:45 -0500
committercheapie <no-email-for-you@example.com>2023-08-04 11:25:45 -0500
commitbbdf947d7c1bffb6d26d333c47c9b2a88109f058 (patch)
tree6a08aa878c06abdf75875d6abf6ddcf5f99011f7 /framework.lua
downloadcelevator-bbdf947d7c1bffb6d26d333c47c9b2a88109f058.tar
celevator-bbdf947d7c1bffb6d26d333c47c9b2a88109f058.tar.gz
celevator-bbdf947d7c1bffb6d26d333c47c9b2a88109f058.tar.bz2
celevator-bbdf947d7c1bffb6d26d333c47c9b2a88109f058.tar.xz
celevator-bbdf947d7c1bffb6d26d333c47c9b2a88109f058.zip
Add bits that are done so far
This includes: * Controller (runs and responds to calls placed on the screen, parameter editing and switches work) * Null Drive (simulates motion so the controller can run, no actual movement yet) * Call Buttons (lights can be toggled with right-click, no communication yet)
Diffstat (limited to 'framework.lua')
-rw-r--r--framework.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/framework.lua b/framework.lua
new file mode 100644
index 0000000..695ac17
--- /dev/null
+++ b/framework.lua
@@ -0,0 +1,4 @@
+celevator = {
+ drives = {},
+ storage = minetest.get_mod_storage(),
+}