diff options
| author | the lemons <citrons@mondecitronne.com> | 2022-08-21 20:37:53 -0500 |
|---|---|---|
| committer | the lemons <citrons@mondecitronne.com> | 2022-08-21 20:37:53 -0500 |
| commit | 4fbbf73aeb39566f73d54e3d42670c7c258e2466 (patch) | |
| tree | 41bef03c3547c69b8e703b068da4d84c8df1ce31 /stuff.lua | |
everything so far
basic mechanics and player control have been implemented, but they work
very poorly at present.
Diffstat (limited to 'stuff.lua')
| -rw-r--r-- | stuff.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/stuff.lua b/stuff.lua new file mode 100644 index 0000000..8fde7d1 --- /dev/null +++ b/stuff.lua @@ -0,0 +1,10 @@ +local game = require 'game' +local physics = require 'physics' + +local M = {} + +M.TestPlatform = physics.simple("test.png", 'rect', 'static') +M.Teapot = physics.simple("utah-teapot.png") +M.Apioform = physics.simple("apioform.png") + +return M |
