view flax/UI.py @ 1499:0e746743dd0f

effects should also get noteTime for doing one-shot stuff Ignore-this: 8cf4c8e978b486ab99e59199414d9ae2
author drewp@bigasterisk.com
date Thu, 16 Jun 2016 06:09: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)
"""