aboutsummaryrefslogtreecommitdiff
path: root/kennel/engine/components/component.py
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth@simponic.xyz>2024-09-14 22:33:35 -0700
committerElizabeth Hunt <elizabeth@simponic.xyz>2024-09-14 22:33:35 -0700
commitf7e7121fce7bd3f7fdabe836955e43b3d194c1c6 (patch)
tree7092421f8a594f62164192d27df69220edda223c /kennel/engine/components/component.py
parent8ec7f5368232d59f344e1067e1bad5e48dbcb7ae (diff)
downloadkennel.hatecomputers.club-f7e7121fce7bd3f7fdabe836955e43b3d194c1c6.tar.gz
kennel.hatecomputers.club-f7e7121fce7bd3f7fdabe836955e43b3d194c1c6.zip
add a spritesheet component
Diffstat (limited to 'kennel/engine/components/component.py')
-rw-r--r--kennel/engine/components/component.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/kennel/engine/components/component.py b/kennel/engine/components/component.py
index 90506b9..7fd7757 100644
--- a/kennel/engine/components/component.py
+++ b/kennel/engine/components/component.py
@@ -6,6 +6,7 @@ class ComponentType(str, Enum):
POSITION = "POSITION"
CONTROLLABLE = "CONTROLLABLE"
MARKOV = "MARKOV"
+ SPRITESHEET = "SPRITESHEET"
class Component: