view flax/UI.py @ 1293:52769b418d68

move underscore to bower Ignore-this: 782252f6f29575280b913d72cbe9decb
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 30 May 2016 07:02:27 +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)
"""