blob: 7d635c79f955495f5eab56ffa6e746fe5b44c165 (
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*);
}
} // namespace SF64
|