Added horizontal bars to UI components.

This commit is contained in:
2025-10-12 00:36:29 -04:00
parent 7cfffde56d
commit d3d1fa1430
7 changed files with 227 additions and 8 deletions

View File

@@ -23,7 +23,7 @@ function Layout:_init(x, y, w, h, spacing, float)
self.y = y ~= nil and y or 0
self.w = w
self.h = h
self.s = spacing ~= nil and spacing or 10
self.spacing = spacing ~= nil and spacing or 10
self.elements = {}
end