diff options
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 |