blob: 0ba805e7cd9a43f6288dbc820a6df2fa71dd0d96 (
plain)
1
2
3
4
5
6
7
|
class IUnitySupport(object):
""" bypass unity support """
def __init__(self, parent): pass
def set_progress(self, progress): pass
def show_progress(self, show=True): pass
UnitySupport = IUnitySupport
|