view flax/UI.py @ 1855:a2407582cef0

checkpoint show data Ignore-this: 2eef648121ef23daf76ffa2a760c3092
author drewp@bigasterisk.com
date Tue, 12 Jun 2018 04:53:28 +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)
"""