| 85 | static BaseView* currentView; |
| 86 | |
| 87 | class RunOnMain { |
| 88 | public: |
| 89 | RunOnMain(std::function<bool()> f, U64 timeToRun) : f(f), timeToRun(timeToRun) {} |
| 90 | |
| 91 | std::function<bool()> f; |
| 92 | U64 timeToRun; |
| 93 | }; |
| 94 | |
| 95 | std::list<RunOnMain> runOnMainFunctions; |
| 96 | std::list<RunOnMain> runAfterFrameFunctions; |
no outgoing calls
no test coverage detected