view flax/UI.py @ 1314:c91d1044fe49

start timeline elements Ignore-this: efa190369534a08c8ad3267ca151bee5
author Drew Perttula <drewp@bigasterisk.com>
date Wed, 01 Jun 2016 10:56:39 +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)
"""