mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +02:00
12 lines
241 B
Python
12 lines
241 B
Python
from enum import Enum # available by default in python3. For python2: "pip install enum34"
|
|
|
|
class Backend(Enum):
|
|
STANDALONE = 1
|
|
PYSIDE = 2
|
|
|
|
backend = Backend.STANDALONE
|
|
|
|
def useUI():
|
|
global backend
|
|
backend = Backend.PYSIDE
|
|
|