view flax/UI.py @ 1932:4dd977d11dca

logging, type fix Ignore-this: ef749a45b4df33881c66be74303b68ea
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 02 Jun 2019 11:36:13 +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)
"""