view flax/UI.py @ 1712:96b37d4f96aa

license Ignore-this: eb2b91d8ee5d4c6fea7866968de5b550
author drewp@bigasterisk.com
date Fri, 04 May 2018 03:10:36 +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)
"""