aboutsummaryrefslogtreecommitdiff
path: root/src/philo/event.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/philo/event.py')
-rw-r--r--src/philo/event.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/philo/event.py b/src/philo/event.py
deleted file mode 100644
index 62f7ca6..0000000
--- a/src/philo/event.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# ############################################################################ #
-# #
-# ::: :::::::: #
-# event.py :+: :+: :+: #
-# +:+ +:+ +:+ #
-# By: charles <me@cacharle.xyz> +#+ +:+ +#+ #
-# +#+#+#+#+#+ +#+ #
-# Created: 2020/09/27 16:04:04 by charles #+# #+# #
-# Updated: 2020/09/27 16:28:43 by charles ### ########.fr #
-# #
-# ############################################################################ #
-
-from enum import Enum
-
-
-class Event(Enum):
- EATING = 1
- SLEEPING = 2
- THINKING = 3
- DIED = 4
- NONE = 5