chore: proper emoji directions

This commit is contained in:
Topvennie 2024-11-26 13:07:31 +01:00
parent e7cf0747a8
commit 230d2cbd50
No known key found for this signature in database

View file

@ -23,10 +23,10 @@ class Direction(StrEnum):
"""
Possible directions to move to.
"""
Up = ""
Right = ""
Down = ""
Left = ""
Up = "⬆️"
Right = "➡️"
Down = "⬇️"
Left = "⬅️"
@property
def coordinates(self) -> tuple[int, int]: