notifications.h 426 B

1234567891011121314151617181920
  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_error_message(void* ctx);
  9. void notify_game_over(void* ctx);
  10. void notify_bumper_hit(void* ctx);
  11. void notify_rail_hit(void* ctx);
  12. void notify_portal(void* ctx);
  13. void notify_lost_life(void* ctx);
  14. void notify_flipper(void* ctx);