view flax/UI.py @ 1690:fa2cc1f0e509

reformat Ignore-this: 468ad1cba38acd2830faf79ea80436fe
author drewp@bigasterisk.com
date Fri, 16 Jun 2017 04:28:26 +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)
"""