view flax/UI.py @ 1764:aec09f94c030

fix notes drawing themselves after they should be gone Ignore-this: 8ce4b8b194dbc13836d22535de92294d
author drewp@bigasterisk.com
date Thu, 31 May 2018 20:48:43 +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)
"""