2019-10-14 18:19:20 +02:00
|
|
|
# Globals for the directions
|
2017-10-11 21:49:33 +05:30
|
|
|
# Change the values as you see fit
|
|
|
|
|
EAST = None
|
|
|
|
|
NORTH = None
|
|
|
|
|
WEST = None
|
|
|
|
|
SOUTH = None
|
|
|
|
|
|
|
|
|
|
|
2019-11-07 08:58:16 -05:00
|
|
|
class Robot:
|
2019-10-14 18:19:20 +02:00
|
|
|
def __init__(self, direction=NORTH, x=0, y=0):
|
2017-03-12 15:13:28 +01:00
|
|
|
pass
|