blob: 08c2cf35bbcbadd0565fabfbe9a40722738d2b53 [file] [log] [blame]
#ifndef _RIVE_TRANSLATION_CONSTRAINT_HPP_
#define _RIVE_TRANSLATION_CONSTRAINT_HPP_
#include "rive/generated/constraints/translation_constraint_base.hpp"
#include <stdio.h>
namespace rive
{
class TranslationConstraint : public TranslationConstraintBase
{
public:
void constrain(TransformComponent* component) override;
};
} // namespace rive
#endif