blob: 49e9a59ad4ed784821fbcc750e9852f16d093513 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "Skeleton.h"
namespace SF64 {
LimbData** Skeleton::GetPointer() {
return mLimbs.data();
}
size_t Skeleton::GetPointerSize() {
return mLimbs.size() * sizeof(LimbData*);
}
}
|