Guest User

Untitled

a guest
Mar 14th, 2023
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. from enum import Enum
  2.  
  3.  
  4. class Direction(Enum):
  5. UP = 0
  6. RIGHT = 1
  7. DOWN = 2
  8. LEFT = 3
  9.  
Add Comment
Please, Sign In to add comment