view flax/UI.py @ 904:86c6700d1d63

2013 code ignores 'config.n3' so 2012 code can use that instead Ignore-this: 4ed3fc7943c066376ef9884643a05418
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 10 Jun 2013 06:01:58 +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)
"""