| 27 | |
| 28 | |
| 29 | class EndLevelLayer : public ax::Layer { |
| 30 | private: |
| 31 | DropDownLayer *_statsLayer; |
| 32 | PlayLayer *_playlayer; |
| 33 | bool _createdWithoutPlaylayer; |
| 34 | |
| 35 | int _jumps; |
| 36 | int _attempts; |
| 37 | int _time; |
| 38 | int _stars; |
| 39 | bool _everyplay_included; |
| 40 | bool _testmode; |
| 41 | public: |
| 42 | static EndLevelLayer* create(PlayLayer *pl); |
| 43 | static EndLevelLayer* create(int attempts, int jumps, int time, bool everyplayIncluded, int stars); |
| 44 | static std::string_view getRandomEndingString(); |
| 45 | |
| 46 | bool init(PlayLayer *pl); |
| 47 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected