Resurgence (PY2022)
Codebase for the Husky Robotics 2021-2022 rover Resurgence
Loading...
Searching...
No Matches
src
commands
CommandBase.h
1
#pragma once
2
3
namespace
commands {
4
5
struct
command_t
{
6
double
thetaVel;
7
double
xVel;
8
};
9
10
class
CommandBase
{
11
public
:
12
virtual
command_t
getOutput() = 0;
13
virtual
bool
isDone() = 0;
14
};
15
16
}
commands::CommandBase
Definition
CommandBase.h:10
commands::command_t
Definition
CommandBase.h:5
Generated by
1.13.2