view flax/UI.py @ 1919:f0d8803e08fc

seems like a timeline bug- fix is untested Ignore-this: ac145afc590121e727c1b2e86b404315
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 01 Jun 2019 20:08:40 +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)
"""