This commit is contained in:
Yohann D'ANELLO
2020-11-18 14:56:59 +01:00
parent a6cd075b8c
commit 20aeb5fd4a
5 changed files with 20 additions and 16 deletions

View File

@ -3,13 +3,13 @@ from typing import Optional
from dungeonbattle.settings import Settings
#This file contains a few useful enumeration classes used elsewhere in the code
# This file contains a few useful enumeration classes used elsewhere in the code
class DisplayActions(Enum):
"""
Display actions options for the callable displayaction Game uses
(it just calls the same action on the display object displayaction refers to)
It just calls the same action on the display object displayaction refers to.
"""
REFRESH = auto()
UPDATE = auto()