blob: c524fec5269ed91dc2e3fa9b5119ff8930621de4 [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