summaryrefslogtreecommitdiff
path: root/constants.py
diff options
context:
space:
mode:
authorBen Connors <benconnors@outlook.com>2019-09-24 22:20:51 -0400
committerBen Connors <benconnors@outlook.com>2019-09-24 22:22:19 -0400
commit7f85bd8ed84b23fc4e683ab90fc7babe288f1a27 (patch)
tree5d0d7439040ace59388cdbbf8e2fd18408f9aa68 /constants.py
Initial commit
- Basic functionality - Can save/load to XML format (see examples folder) - Can create and edit fixtures and channels - Can create and edit Scenes and Audios - Live updates through callbacks
Diffstat (limited to 'constants.py')
-rw-r--r--constants.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/constants.py b/constants.py
new file mode 100644
index 0000000..7008ffc
--- /dev/null
+++ b/constants.py
@@ -0,0 +1,13 @@
+"""Constants module.
+
+Contains some constants used throughout.
+"""
+
+INFTY = -1
+AUTO = -2
+
+BXW = "{http://unsuspicious.services/bxw}"
+
+SCENE = "Scene"
+AUDIO = "Audio"
+CHASER = "Chaser"