mirror of
https://github.com/TangentFoxy/Pop.Box.git
synced 2024-12-15 12:44:20 +00:00
40 lines
905 B
Lua
40 lines
905 B
Lua
local graphics
|
|
graphics = love.graphics
|
|
local sub, len
|
|
do
|
|
local _obj_0 = string
|
|
sub, len = _obj_0.sub, _obj_0.len
|
|
end
|
|
local path = sub(..., 1, len(...) - len("/extensions/streamlined_get_set"))
|
|
local element = require(tostring(path) .. "/elements/element")
|
|
local box = require(tostring(path) .. "/elements/box")
|
|
local text = require(tostring(path) .. "/elements/text")
|
|
element.__base.position = function(self, x, y)
|
|
if x or y then
|
|
return self:setPosition(x, y)
|
|
else
|
|
return self:getPosition()
|
|
end
|
|
end
|
|
element.__base.size = function(self, w, h)
|
|
if w or h then
|
|
return self:setSize(w, h)
|
|
else
|
|
return self:getSize()
|
|
end
|
|
end
|
|
element.__base.width = function(self, w)
|
|
if w then
|
|
return self:setWidth(w)
|
|
else
|
|
return self:getWidth()
|
|
end
|
|
end
|
|
elements.__base.height = function(self, h)
|
|
if h then
|
|
return self:setHeight(h)
|
|
else
|
|
return self:getHeight()
|
|
end
|
|
end
|