Start Conditions

This commit is contained in:
Matthew DeMartino
2021-05-22 23:54:19 -04:00
parent 947623c42d
commit 285312c0a4
4 changed files with 32 additions and 13 deletions
+9
View File
@@ -0,0 +1,9 @@
class Condition:
"""A condition that can be held by an agent"""
pass
class Blinded(Condition):
pass
class Charmed(Condition):
pass