8 lines
148 B
C++
8 lines
148 B
C++
#pragma once
|
|
|
|
#include <gait/state.h>
|
|
|
|
class IdleState : public GaitState {
|
|
protected:
|
|
const char *name() const override { return "Idle"; }
|
|
}; |