view flax/UI.py @ 1683:06e4d6de74f3

show cp Ignore-this: bdaa4e6dae874e9574e0cfc043c84e84
author drewp@bigasterisk.com
date Sun, 11 Jun 2017 22:16:40 +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)
"""