view flax/UI.py @ 885:dc6095cd7601

syncedgraph.contains support Ignore-this: 64c70222eda0fabec59b446237b17dde
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 08 Jun 2013 08:19:36 +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)
"""