view flax/UI.py @ 1695:03125dac50a2

reorder makefile Ignore-this: ea04b284790a85e8674b3c5b6952f736
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 26 Apr 2018 06:37:21 +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)
"""