daily checkpoint, not much improved, stairsplus still completely nonfunctional

This commit is contained in:
flux
2022-06-12 21:10:36 -07:00
parent da7d0f94dc
commit 9e68ca91b8
49 changed files with 89 additions and 28 deletions

6
stairsplus/api/init.lua Normal file
View File

@ -0,0 +1,6 @@
stairsplus.api = {}
stairsplus.dofile("api", "shape")
stairsplus.dofile("api", "node")
stairsplus.dofile("api", "station")
stairsplus.dofile("api", "recipe")

1
stairsplus/api/node.lua Normal file
View File

@ -0,0 +1 @@
-- for registering variants of a specific node

View File

@ -0,0 +1,3 @@
-- for registering recipe schemas
-- should register schemas w/ unified_inventory and i3 and whatever else,
-- and hide the recipes for the individual nodes (possibly a setting for such)

2
stairsplus/api/shape.lua Normal file
View File

@ -0,0 +1,2 @@
-- register shapes (e.g. 1/16 slab, 1/8 slab, 1/4 slab, etc)
-- register shape groups (e.g. slab, stair, etc.)

View File

@ -0,0 +1 @@
-- for creating the circular saw and similar nodes