summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2017-09-05 05:01:49 +0200
committerAki <nthirtyone@gmail.com>2017-09-05 05:01:49 +0200
commit69eebe12baa0804cacf7285d1fdc20f42334dc27 (patch)
treef08647cad0799ca977badeb50ba76b6c5f7d09ce
parent50eefa52a843f03fd5dda4c8628d558bc00ced87 (diff)
downloadroflnauts-69eebe12baa0804cacf7285d1fdc20f42334dc27.zip
roflnauts-69eebe12baa0804cacf7285d1fdc20f42334dc27.tar.gz
roflnauts-69eebe12baa0804cacf7285d1fdc20f42334dc27.tar.bz2
CloudGenerator created
-rw-r--r--not/CloudGenerator.lua12
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