MotionEvent.h 758 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #include <EMotionFX/Source/MotionEventTrack.h>
  9. namespace EMotionFX
  10. {
  11. // These functions make various configurations of events
  12. void MakeNoEvents(MotionEventTrack* /*track*/);
  13. void MakeOneRangedEvent(MotionEventTrack* track);
  14. void MakeOneEvent(MotionEventTrack* track);
  15. void MakeTwoEvents(MotionEventTrack* track);
  16. void MakeThreeEvents(MotionEventTrack* track);
  17. void MakeThreeRangedEvents(MotionEventTrack* track);
  18. void MakeTwoLeftRightEvents(MotionEventTrack* track);
  19. } // end namespace EMotionFX