view flax/UI.py @ 1408:fa6b2e6d0799

checkpoint show data Ignore-this: 937d92addd60223dccbaa0eebbcb02ea
author drewp@bigasterisk.com
date Mon, 15 Jun 2015 22:37:38 +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)
"""