16 lines
231 B
C++
16 lines
231 B
C++
#pragma once
|
|
|
|
class API {
|
|
|
|
public:
|
|
|
|
static bool wallFront();
|
|
static bool wallRight();
|
|
static bool wallLeft();
|
|
|
|
static void moveForward(int distance = 1);
|
|
static void turnRight();
|
|
static void turnLeft();
|
|
|
|
};
|