blob: 60f474dfd75177cbe55cd0386bc74facb69f945e [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