view flax/UI.py @ 1713:bd0c83b063df

bower, polymer, coffee updates Ignore-this: 39b3c5edc1ea34c1f138c538341269f
author Drew Perttula <drewp@bigasterisk.com>
date Fri, 04 May 2018 07:58:13 +0000
parents 45b12307c695
children
line wrap: on
line source

# Abstract UI widgets

class UI(Something):
    pass

class Scale(UI):
    def __init__(self, start, stop, res=0.001):
        pass

""" unfinished
class Button(UI):
    def __init__(self, etc)
"""