diff options
author | Aki <nthirtyone@gmail.com> | 2017-09-05 05:01:49 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-09-05 05:01:49 +0200 |
commit | 69eebe12baa0804cacf7285d1fdc20f42334dc27 (patch) | |
tree | f08647cad0799ca977badeb50ba76b6c5f7d09ce /not | |
parent | 50eefa52a843f03fd5dda4c8628d558bc00ced87 (diff) | |
download | roflnauts-69eebe12baa0804cacf7285d1fdc20f42334dc27.zip roflnauts-69eebe12baa0804cacf7285d1fdc20f42334dc27.tar.gz roflnauts-69eebe12baa0804cacf7285d1fdc20f42334dc27.tar.bz2 |
CloudGenerator created
Diffstat (limited to 'not')
-rw-r--r-- | not/CloudGenerator.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/not/CloudGenerator.lua b/not/CloudGenerator.lua new file mode 100644 index 0000000..0620cdd --- /dev/null +++ b/not/CloudGenerator.lua @@ -0,0 +1,12 @@ +--- Generates clouds over time with randomized positions and styles. +CloudGenerator = require "not.Object":extends() + +function CloudGenerator:new (world, styles) + self.world = world +end + +function CloudGenerator:update (dt) + +end + +return CloudGenerator |