15 lines
227 B
C
15 lines
227 B
C
|
#ifndef TETRAPOD_POSER_H
|
||
|
#define TETRAPOD_POSER_H
|
||
|
#include "poser.h"
|
||
|
|
||
|
class TetrapodPoser : public Poser
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
TetrapodPoser(const std::vector<AutoRiggerBone> &bones);
|
||
|
public:
|
||
|
void commit();
|
||
|
};
|
||
|
|
||
|
#endif
|