Tutorial.h 263 B

1234567891011121314
  1. #ifndef TUTORIAL_H
  2. #define TUTORIAL_H
  3. enum EnumTutorialTypes
  4. {
  5. TUT_VELOCITY=0,
  6. TUT_ACCELERATION,
  7. TUT_COLLISION,
  8. TUT_SOLVE_CONTACT_CONSTRAINT,
  9. };
  10. class CommonExampleInterface* TutorialCreateFunc(struct CommonExampleOptions& options);
  11. #endif //TUTORIAL_H