notifications.h 470 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include <furi.h>
  3. #include <notification/notification.h>
  4. // void notify_init();
  5. // void notify_free();
  6. void notify_ball_released(void* ctx);
  7. void notify_table_bump(void* ctx);
  8. void notify_table_tilted(void* ctx);
  9. void notify_error_message(void* ctx);
  10. void notify_game_over(void* ctx);
  11. void notify_bumper_hit(void* ctx);
  12. void notify_rail_hit(void* ctx);
  13. void notify_portal(void* ctx);
  14. void notify_lost_life(void* ctx);
  15. void notify_flipper(void* ctx);