#pragma once #include #include #include namespace SOH { class PlayerAnimation : public Ship::Resource { public: using Resource::Resource; PlayerAnimation() : Resource(std::shared_ptr()) { } int16_t* GetPointer(); size_t GetPointerSize(); std::vector limbRotData; }; } // namespace SOH