CFESAndroidGraphics.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // CFESAndroidGraphics - [2020-04-13 11:57:46]
  2. #ifndef _CFESANDROIDGRAPHICS_H_
  3. #define _CFESANDROIDGRAPHICS_H_
  4. #include "common.h"
  5. #include "CFEScreen.h"
  6. /*
  7. 00153510 CFESAndroidGraphics::CFESAndroidGraphics()
  8. 00125394 CFESAndroidGraphics::~CFESAndroidGraphics()
  9. 00124EDC CFESAndroidGraphics::Init()
  10. 0012509C CFESAndroidGraphics::Process()
  11. 001250A6 CFESAndroidGraphics::Render2D()
  12. 001250AC CFESAndroidGraphics::Render2DHUD()
  13. 00125130 CFESAndroidGraphics::SendGraphicsAnalytics()
  14. 0012520C CFESAndroidGraphics::Exit()
  15. 00125210 CFESAndroidGraphics::OnBackPressed()
  16. 00125288 CFESAndroidGraphics::RebootGameCB(int,void *)
  17. 001252B8 CFESAndroidGraphics::OnInfoPressed()
  18. 00125328 CFESAndroidGraphics::HelpCB(int,void *)
  19. */
  20. class CFESAndroidGraphics : public CFEScreen {
  21. public:
  22. CFESAndroidGraphics(); // 00153510
  23. virtual ~CFESAndroidGraphics(); // 00125394
  24. void Init(); // 00124EDC
  25. virtual void Process(); // 0012509C
  26. void Render2D(); // 001250A6
  27. void Render2DHUD(); // 001250AC
  28. static void SendGraphicsAnalytics(); // 00125130
  29. void Exit(); // 0012520C
  30. static void OnBackPressed(); // 00125210
  31. static void RebootGameCB(int, void *); // 00125288
  32. static void OnInfoPressed(); // 001252B8
  33. static void HelpCB(int, void *); // 00125328
  34. static int ms_iValues[3];
  35. static uint ms_iOriginalValues[3];
  36. ;
  37. };
  38. #endif //_CFESANDROIDGRAPHICS_H_