🧼 Splits motions state to own files

This commit is contained in:
Rune Harlyk
2024-11-12 12:09:06 +01:00
committed by Rune Harlyk
parent 8283e24407
commit dcfce13f4b
10 changed files with 365 additions and 337 deletions
@@ -0,0 +1,8 @@
#pragma once
#include <gait/state.h>
class IdleState : public GaitState {
protected:
const char *name() const override { return "Idle"; }
};