RunnableState.cpp 220 B

12345678910111213141516
  1. #include "RunnableState.h"
  2. void RunnableState::SetParentApp(AppInterface *parent)
  3. {
  4. this->parent=parent;
  5. }
  6. void RunnableState::SetFocus(bool hasFocus)
  7. {
  8. }
  9. void RunnableState::OnStateReady(void)
  10. {
  11. }
粤ICP备19079148号