mine_sweeper_haptic.h 368 B

1234567891011121314151617
  1. #ifndef MINESWEEPER_HAPTIC_H
  2. #define MINESWEEPER_HAPTIC_H
  3. #include <notification/notification_messages.h>
  4. void mine_sweeper_play_happy_bump(void* context);
  5. void mine_sweeper_play_long_ok_bump(void* context);
  6. void mine_sweeper_play_oob_bump(void* context);
  7. void mine_sweeper_play_lose_bump(void* context);
  8. void mine_sweeper_play_win_bump(void* context);
  9. #endif