view flax/UI.py @ 1762:a67d1a95ebf9

reindent Ignore-this: 9a1daf1646e296a6f3f96843413ef5c7
author drewp@bigasterisk.com
date Thu, 31 May 2018 08:14:37 +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)
"""