mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-27 03:53:24 +00:00
15 lines
138 B
C++
15 lines
138 B
C++
#ifndef BONE_H
|
|
#define BONE_H
|
|
|
|
#include"node.h"
|
|
|
|
namespace vb01{
|
|
class Bone : public Node{
|
|
public:
|
|
Bone();
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|