chroma_solstice/door.lua

15 lines
187 B
Lua
Raw Normal View History

2015-03-12 03:04:09 -04:00
require "entity"
Door = class("Door", Entity)
function Door:initialize()
end
function Door:unloc()
self.collision = "none"
end
function Door:loc()
self.collision = "unmoveable"
end