mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-08 21:54:58 +00:00
10 lines
404 B
Ruby
10 lines
404 B
Ruby
#===============================================================================
|
|
# TODO
|
|
#===============================================================================
|
|
class UIControls::DropdownList < UIControls::BaseControl
|
|
def initialize(width, height, viewport, options, value)
|
|
# NOTE: options is a hash: keys are symbols, values are display names.
|
|
super(width, height, viewport)
|
|
end
|
|
end
|