view flax/UI.py @ 1468:b291b7be7332

refactor. try to remove connector turds (failed) Ignore-this: 5341ffd154c24e4c62f3d58bdc595b7
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 12 Jun 2016 11:35:25 +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)
"""