mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
10 lines
131 B
C++
10 lines
131 B
C++
#include"bone.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace vb01{
|
|
Bone::Bone(string name, Vector3 pos) : Node(pos){
|
|
this->name=name;
|
|
}
|
|
}
|