covid-sim
src
Direction.hpp
1
#pragma once
2
3
enum
Direction {
4
Right = 0,
5
Up = 1,
6
Left = 2,
7
Down = 3
8
};
9
10
Direction rotate_left(Direction direction);
Generated by
1.8.14