| 49 | |
| 50 | |
| 51 | class GJSearchObject : public ax::Node { |
| 52 | public: |
| 53 | SearchType _screenID; |
| 54 | std::string _searchQuery = "favij"; |
| 55 | std::string _difficulty; |
| 56 | std::string _length; |
| 57 | int _page; |
| 58 | bool _starFilter; |
| 59 | bool _noStarFilter; |
| 60 | bool _uncompletedFilter; |
| 61 | bool _completedFilter; |
| 62 | bool _featuredFilter; |
| 63 | bool _originalFilter; |
| 64 | bool _twoPlayerFilter; |
| 65 | bool _coinsFilter; |
| 66 | bool _epicFilter; |
| 67 | //GJDifficulty m_eDemonFilter; |
| 68 | int _songID; |
| 69 | bool _customSongFilter; |
| 70 | bool _songFilter; |
| 71 | |
| 72 | static GJSearchObject* create(); |
| 73 | static GJSearchObject* create(std::string_view query); |
| 74 | static GJSearchObject* create(SearchType type); |
| 75 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected