summaryrefslogtreecommitdiffhomepage
path: root/not/CloudGenerator.lua
blob: 0620cdda2b63e6ace4b8e720cfa8b3dbf3ff9c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
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