view flax/UI.py @ 1035:40669f666d15

update networking to test on dash Ignore-this: 7fbb4b6902e4dbfd45e5f2c1ad277c33
author Drew Perttula <drewp@bigasterisk.com>
date Tue, 27 May 2014 06:31:19 +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)
"""