getting ready for maybe elements, also runs too slowly now

This commit is contained in:
Paul Liverman
2015-11-23 23:09:00 -08:00
parent 5da68831a9
commit 1a1183a854
5 changed files with 86 additions and 13 deletions

13
src/Element.lua Normal file
View File

@@ -0,0 +1,13 @@
local class = require "lib.middleclass"
local Element = class("Element")
Double.static.maxCount = 100 --1000
Double.static.generated = 0
Double.static.count = 0
function Element:initialize(double)
-- DO SHIT BASED ON POSITIVE OR NEGATIVE
end
return Element