view flax/UI.py @ 1646:40bd7f24cae8

rm autodep watchers code Ignore-this: 9d16730d3d7f5cf0a59a3089cee01562
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 10 Jun 2017 09:21:23 +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)
"""