view flax/UI.py @ 1827:cc65c40802f6

checkpoint show data Ignore-this: b36efe828d197f5940ff1ba2ef8c05d0
author drewp@bigasterisk.com
date Sat, 09 Jun 2018 17:41:45 +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)
"""