mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
19 lines
276 B
C++
19 lines
276 B
C++
#ifndef BONE_H
|
|
#define BONE_H
|
|
|
|
#include"node.h"
|
|
#include<string>
|
|
|
|
namespace vb01{
|
|
class Bone : public Node{
|
|
public:
|
|
Bone(std::string,Vector3=Vector3::VEC_ZERO);
|
|
std::string getName(){return name;}
|
|
private:
|
|
std::string name;
|
|
Vector3 yAxis,zAxis;
|
|
};
|
|
}
|
|
|
|
#endif
|