view flax/UI.py @ 1891:36849634d50b

mymy on collector Ignore-this: 8c3be45e0a4b7608f40e81020636424f
author Drew Perttula <drewp@bigasterisk.com>
date Wed, 29 May 2019 15:58: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)
"""