mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
19 lines
338 B
C++
19 lines
338 B
C++
#pragma once
|
|
|
|
#include "Game/LiveActor/Spine.hpp"
|
|
|
|
class NerveExecutor {
|
|
public:
|
|
NerveExecutor(const char *);
|
|
|
|
virtual ~NerveExecutor();
|
|
|
|
void initNerve(const Nerve *);
|
|
void updateNerve();
|
|
void setNerve(const Nerve *);
|
|
bool isNerve(const Nerve* ) const;
|
|
s32 getNerveStep() const;
|
|
|
|
Spine* mSpine; // 0x4
|
|
};
|