blob: 26092c621be23168e5d26375e393d01291abc0c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "PlayerAnimation.h"
#include <libultraship/libultra/gbi.h>
namespace SOH {
int16_t* PlayerAnimation::GetPointer() {
return limbRotData.data();
}
size_t PlayerAnimation::GetPointerSize() {
return limbRotData.size() * sizeof(int16_t);
}
} // namespace SOH
|