From 69eebe12baa0804cacf7285d1fdc20f42334dc27 Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 5 Sep 2017 05:01:49 +0200 Subject: CloudGenerator created --- not/CloudGenerator.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 not/CloudGenerator.lua 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 -- cgit v1.1