mirror of
https://github.com/cyberarm/cyberarm_engine.git
synced 2025-12-16 21:22:33 +00:00
13 lines
213 B
Ruby
13 lines
213 B
Ruby
module CyberarmEngine
|
|
class Element
|
|
class Stack < Container
|
|
include Common
|
|
|
|
def layout
|
|
@children.each do |child|
|
|
move_to_next_line(child)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |