dining-philosophers/include/philosopher-state.hpp
2023-04-19 00:32:59 +02:00

8 lines
85 B
C++

#pragma once
enum class PhilosopherState {
THINKING,
HUNGRY,
EATING,
};