├── LICENSE ├── README.md ├── api.config ├── api ├── api.lua ├── audio.lua ├── cell_management.lua ├── config.lua ├── helper.lua ├── plugin.lua ├── save.lua └── security.lua ├── beep.wav ├── conf.lua ├── credits.txt ├── destroy.wav ├── icon.png ├── libs ├── ModBinder.lua ├── ModShare.lua ├── Synapse.lua └── json.lua ├── main.lua ├── mods.txt ├── music.wav ├── plugins └── toinit.txt ├── src ├── chunks.lua ├── encoding.lua ├── move.lua ├── update.lua └── update │ ├── advancer.lua │ ├── drillers.lua │ ├── flippers.lua │ ├── freezers.lua │ ├── gate.lua │ ├── gear.lua │ ├── gens.lua │ ├── impulsers.lua │ ├── intakers.lua │ ├── mirrors.lua │ ├── molds.lua │ ├── movers.lua │ ├── pullers.lua │ ├── redirectors.lua │ ├── replicators.lua │ ├── repulsers.lua │ ├── rotators.lua │ ├── shields.lua │ ├── supgens.lua │ └── supreps.lua └── textures ├── advancer.png ├── bg.png ├── bias.png ├── ccwgenerator.png ├── copy.png ├── crossdiverger.png ├── crossgenerator.png ├── crossmirror.png ├── crossopposition.png ├── crossreplicator.png ├── cut.png ├── cwgenerator.png ├── demolisher.png ├── diverger.png ├── doublediverger.png ├── doublerotator.png ├── driller.png ├── enemy.png ├── flipper.png ├── forker.png ├── freezer.png ├── fungal.png ├── gate_and.png ├── gate_nand.png ├── gate_nor.png ├── gate_or.png ├── gate_xnor.png ├── gate_xor.png ├── gear_ccw.png ├── gear_cw.png ├── generator.png ├── ghost.png ├── gradientbase.png ├── impulse.png ├── intaker.png ├── menu.png ├── mirror.png ├── mold.png ├── mover.png ├── nonexistant.png ├── onedirectional.png ├── opposition.png ├── paste.png ├── pixel.png ├── placeable.png ├── puller.png ├── push.png ├── redirector.png ├── replicator.png ├── repulse.png ├── rotator_180.png ├── rotator_ccw.png ├── rotator_cw.png ├── select.png ├── setinitial.png ├── shield.png ├── slide.png ├── slideopposition.png ├── straightdiverger.png ├── strongenemy.png ├── super_repulsor.png ├── supergenerator.png ├── threedirectional.png ├── trash.png ├── tripleforker.png ├── twistgenerator.png ├── twodirectional.png ├── wall.png ├── weight.png ├── zoomin.png └── zoomout.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/README.md -------------------------------------------------------------------------------- /api.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/api.config -------------------------------------------------------------------------------- /api/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/api/api.lua -------------------------------------------------------------------------------- /api/audio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/api/audio.lua -------------------------------------------------------------------------------- /api/cell_management.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/api/cell_management.lua -------------------------------------------------------------------------------- /api/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/api/config.lua -------------------------------------------------------------------------------- /api/helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/api/helper.lua -------------------------------------------------------------------------------- /api/plugin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/api/plugin.lua -------------------------------------------------------------------------------- /api/save.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/api/save.lua -------------------------------------------------------------------------------- /api/security.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/api/security.lua -------------------------------------------------------------------------------- /beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/beep.wav -------------------------------------------------------------------------------- /conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/conf.lua -------------------------------------------------------------------------------- /credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/credits.txt -------------------------------------------------------------------------------- /destroy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/destroy.wav -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/icon.png -------------------------------------------------------------------------------- /libs/ModBinder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/libs/ModBinder.lua -------------------------------------------------------------------------------- /libs/ModShare.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/libs/ModShare.lua -------------------------------------------------------------------------------- /libs/Synapse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/libs/Synapse.lua -------------------------------------------------------------------------------- /libs/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/libs/json.lua -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/main.lua -------------------------------------------------------------------------------- /mods.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/music.wav -------------------------------------------------------------------------------- /plugins/toinit.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/chunks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/chunks.lua -------------------------------------------------------------------------------- /src/encoding.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/encoding.lua -------------------------------------------------------------------------------- /src/move.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/move.lua -------------------------------------------------------------------------------- /src/update.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update.lua -------------------------------------------------------------------------------- /src/update/advancer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/advancer.lua -------------------------------------------------------------------------------- /src/update/drillers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/drillers.lua -------------------------------------------------------------------------------- /src/update/flippers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/flippers.lua -------------------------------------------------------------------------------- /src/update/freezers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/freezers.lua -------------------------------------------------------------------------------- /src/update/gate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/gate.lua -------------------------------------------------------------------------------- /src/update/gear.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/gear.lua -------------------------------------------------------------------------------- /src/update/gens.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/gens.lua -------------------------------------------------------------------------------- /src/update/impulsers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/impulsers.lua -------------------------------------------------------------------------------- /src/update/intakers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/intakers.lua -------------------------------------------------------------------------------- /src/update/mirrors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/mirrors.lua -------------------------------------------------------------------------------- /src/update/molds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/molds.lua -------------------------------------------------------------------------------- /src/update/movers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/movers.lua -------------------------------------------------------------------------------- /src/update/pullers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/pullers.lua -------------------------------------------------------------------------------- /src/update/redirectors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/redirectors.lua -------------------------------------------------------------------------------- /src/update/replicators.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/replicators.lua -------------------------------------------------------------------------------- /src/update/repulsers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/repulsers.lua -------------------------------------------------------------------------------- /src/update/rotators.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/rotators.lua -------------------------------------------------------------------------------- /src/update/shields.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/shields.lua -------------------------------------------------------------------------------- /src/update/supgens.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/supgens.lua -------------------------------------------------------------------------------- /src/update/supreps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/src/update/supreps.lua -------------------------------------------------------------------------------- /textures/advancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/advancer.png -------------------------------------------------------------------------------- /textures/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/bg.png -------------------------------------------------------------------------------- /textures/bias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/bias.png -------------------------------------------------------------------------------- /textures/ccwgenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/ccwgenerator.png -------------------------------------------------------------------------------- /textures/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/copy.png -------------------------------------------------------------------------------- /textures/crossdiverger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/crossdiverger.png -------------------------------------------------------------------------------- /textures/crossgenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/crossgenerator.png -------------------------------------------------------------------------------- /textures/crossmirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/crossmirror.png -------------------------------------------------------------------------------- /textures/crossopposition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/crossopposition.png -------------------------------------------------------------------------------- /textures/crossreplicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/crossreplicator.png -------------------------------------------------------------------------------- /textures/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/cut.png -------------------------------------------------------------------------------- /textures/cwgenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/cwgenerator.png -------------------------------------------------------------------------------- /textures/demolisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/demolisher.png -------------------------------------------------------------------------------- /textures/diverger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/diverger.png -------------------------------------------------------------------------------- /textures/doublediverger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/doublediverger.png -------------------------------------------------------------------------------- /textures/doublerotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/doublerotator.png -------------------------------------------------------------------------------- /textures/driller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/driller.png -------------------------------------------------------------------------------- /textures/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/enemy.png -------------------------------------------------------------------------------- /textures/flipper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/flipper.png -------------------------------------------------------------------------------- /textures/forker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/forker.png -------------------------------------------------------------------------------- /textures/freezer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/freezer.png -------------------------------------------------------------------------------- /textures/fungal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/fungal.png -------------------------------------------------------------------------------- /textures/gate_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/gate_and.png -------------------------------------------------------------------------------- /textures/gate_nand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/gate_nand.png -------------------------------------------------------------------------------- /textures/gate_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/gate_nor.png -------------------------------------------------------------------------------- /textures/gate_or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/gate_or.png -------------------------------------------------------------------------------- /textures/gate_xnor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/gate_xnor.png -------------------------------------------------------------------------------- /textures/gate_xor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/gate_xor.png -------------------------------------------------------------------------------- /textures/gear_ccw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/gear_ccw.png -------------------------------------------------------------------------------- /textures/gear_cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/gear_cw.png -------------------------------------------------------------------------------- /textures/generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/generator.png -------------------------------------------------------------------------------- /textures/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/ghost.png -------------------------------------------------------------------------------- /textures/gradientbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/gradientbase.png -------------------------------------------------------------------------------- /textures/impulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/impulse.png -------------------------------------------------------------------------------- /textures/intaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/intaker.png -------------------------------------------------------------------------------- /textures/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/menu.png -------------------------------------------------------------------------------- /textures/mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/mirror.png -------------------------------------------------------------------------------- /textures/mold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/mold.png -------------------------------------------------------------------------------- /textures/mover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/mover.png -------------------------------------------------------------------------------- /textures/nonexistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/nonexistant.png -------------------------------------------------------------------------------- /textures/onedirectional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/onedirectional.png -------------------------------------------------------------------------------- /textures/opposition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/opposition.png -------------------------------------------------------------------------------- /textures/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/paste.png -------------------------------------------------------------------------------- /textures/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/pixel.png -------------------------------------------------------------------------------- /textures/placeable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/placeable.png -------------------------------------------------------------------------------- /textures/puller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/puller.png -------------------------------------------------------------------------------- /textures/push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/push.png -------------------------------------------------------------------------------- /textures/redirector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/redirector.png -------------------------------------------------------------------------------- /textures/replicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/replicator.png -------------------------------------------------------------------------------- /textures/repulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/repulse.png -------------------------------------------------------------------------------- /textures/rotator_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/rotator_180.png -------------------------------------------------------------------------------- /textures/rotator_ccw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/rotator_ccw.png -------------------------------------------------------------------------------- /textures/rotator_cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/rotator_cw.png -------------------------------------------------------------------------------- /textures/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/select.png -------------------------------------------------------------------------------- /textures/setinitial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/setinitial.png -------------------------------------------------------------------------------- /textures/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/shield.png -------------------------------------------------------------------------------- /textures/slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/slide.png -------------------------------------------------------------------------------- /textures/slideopposition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/slideopposition.png -------------------------------------------------------------------------------- /textures/straightdiverger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/straightdiverger.png -------------------------------------------------------------------------------- /textures/strongenemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/strongenemy.png -------------------------------------------------------------------------------- /textures/super_repulsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/super_repulsor.png -------------------------------------------------------------------------------- /textures/supergenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/supergenerator.png -------------------------------------------------------------------------------- /textures/threedirectional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/threedirectional.png -------------------------------------------------------------------------------- /textures/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/trash.png -------------------------------------------------------------------------------- /textures/tripleforker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/tripleforker.png -------------------------------------------------------------------------------- /textures/twistgenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/twistgenerator.png -------------------------------------------------------------------------------- /textures/twodirectional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/twodirectional.png -------------------------------------------------------------------------------- /textures/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/wall.png -------------------------------------------------------------------------------- /textures/weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/weight.png -------------------------------------------------------------------------------- /textures/zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/zoomin.png -------------------------------------------------------------------------------- /textures/zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyYay/CelLua-Machine/HEAD/textures/zoomout.png --------------------------------------------------------------------------------