summaryrefslogtreecommitdiff
path: root/src/port/resource/type/Limb.cpp
blob: a2030c32f4b637e52ae3155de117b61b66ce39cb (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "Limb.h"

namespace SF64 {
LimbData* Limb::GetPointer() {
    return &mData;
}

size_t Limb::GetPointerSize() {
    return sizeof(mData);
}
}