diff options
Diffstat (limited to 'src/scenes/scenes.h')
| -rw-r--r-- | src/scenes/scenes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scenes/scenes.h b/src/scenes/scenes.h index d705feb..f4ba579 100644 --- a/src/scenes/scenes.h +++ b/src/scenes/scenes.h @@ -40,10 +40,11 @@ bool UpdateScene(); Scene *CreateMainMenu(); Scene *CreatePuzzleScene(Puzzle *puzzle); +/// Expects a callback to add time (second argument = amount of seconds) to the scene. Scene *CreateDistractionScene(DistractionPuzzle *puzzle, void (*addTime)(Scene *, size_t)); Scene *CreateResultView(SubmitionResult *result); -Scene *CreatePuzzleCollectionScene(CollectionElement *el); +Scene *CreatePuzzleCollectionScene(CollectionElement *el, bool smooothEntry); Scene *CreatePuzzlePreview(Puzzle *puzzle); #endif // SCENES_H |
