view flax/UI.py @ 1008:f7de3c3c0e9a

show adjustment Ignore-this: ce68ef96a2a1e411eb5d44ca6968e48e
author drewp@bigasterisk.com
date Tue, 18 Jun 2013 02:19:17 +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)
"""