view flax/UI.py @ 1675:e2ddb3e55b84

auraSparkles Ignore-this: 67d3d6f3f67d729685944b584a2d801a
author drewp@bigasterisk.com
date Sun, 11 Jun 2017 18:58:53 +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)
"""