Micromouse/lib/api/api.h
2024-08-15 11:46:37 -06:00

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();
};