view flax/UI.py @ 1226:1ea0629a7fe6

ascoltami mini mode Ignore-this: f09fcb7e27972e4e116da024ff707d4
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 08 Jun 2015 08:12:55 +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)
"""