view flax/UI.py @ 1784:1aac97248a1b

fix KC simpleOutputs object Ignore-this: 5b7fe29996161a5d5bbde043f267b8d2
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 07 Jun 2018 05:37:08 +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)
"""