Change name of Robot struct to include in C++

This commit is contained in:
2023-03-15 14:51:00 -05:00
parent 150c450210
commit f2918b441d
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
#pragma once
// Handle for the high level robot interface
struct Robot;
typedef struct Robot* Robot;
struct RobotImp;
typedef struct RobotImp* Robot;
/*
* Return a handle to the high level robot interface, or NULL on error.