mirror of
https://github.com/cyberarm/cyberarm_engine.git
synced 2025-12-16 05:02:34 +00:00
12 lines
192 B
Ruby
12 lines
192 B
Ruby
module CyberarmEngine
|
|
class Element
|
|
class Stack < Container
|
|
def layout
|
|
@children.each do |child|
|
|
move_to_next_line(child)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|