Files
rive-cpp/include/bones/skeletal_component.hpp
2020-08-16 18:20:11 -07:00

13 lines
266 B
C++

#ifndef _RIVE_SKELETAL_COMPONENT_HPP_
#define _RIVE_SKELETAL_COMPONENT_HPP_
#include "generated/bones/skeletal_component_base.hpp"
#include <stdio.h>
namespace rive
{
class SkeletalComponent : public SkeletalComponentBase
{
public:
};
} // namespace rive
#endif