subbrute_scene_entrypoint.h 397 B

12345678
  1. #pragma once
  2. #include "../subbrute.h"
  3. void subbrute_scene_entrypoint_on_enter(SubBruteState* context);
  4. void subbrute_scene_entrypoint_on_exit(SubBruteState* context);
  5. void subbrute_scene_entrypoint_on_tick(SubBruteState* context);
  6. void subbrute_scene_entrypoint_on_event(SubBruteEvent event, SubBruteState* context);
  7. void subbrute_scene_entrypoint_on_draw(Canvas* canvas, SubBruteState* context);