lutro-game-of-life/DeadCell.lua

11 lines
186 B
Lua
Raw Normal View History

2015-02-20 01:00:54 +00:00
DeadCell = Cell.new()
DeadCell.__index = DeadCell
function DeadCell.new(n)
local self = setmetatable({}, DeadCell)
return self
end
function DeadCell:getColor()
return 0xff333333
2015-02-20 01:00:54 +00:00
end