CFESIntro.cpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #include "CFESIntro.h"
  2. //-------------------------------------------------------------------------------------------------
  3. //0012A81C
  4. CFESIntro::CFESIntro() {
  5. }
  6. //-------------------------------------------------------------------------------------------------
  7. //0012A834 0012A838
  8. CFESIntro::~CFESIntro() {
  9. }
  10. //-------------------------------------------------------------------------------------------------
  11. //0012A848
  12. void CFESIntro::Init() {
  13. LOGI("CFESIntro::Init");
  14. }
  15. //-------------------------------------------------------------------------------------------------
  16. //0012A864
  17. void CFESIntro::Exit() {
  18. LOGI("CFESIntro::Exit");
  19. }
  20. //-------------------------------------------------------------------------------------------------
  21. //0012A866
  22. void CFESIntro::Process() {
  23. LOGI("CFESIntro::Process");
  24. }
  25. //-------------------------------------------------------------------------------------------------
  26. //0012A870
  27. void CFESIntro::Render2D() {
  28. LOGI("CFESIntro::Render2D");
  29. }
  30. //-------------------------------------------------------------------------------------------------
  31. //0012A876
  32. void CFESIntro::Render2DHUD() {
  33. LOGI("CFESIntro::Render2DHUD");
  34. }
  35. //-------------------------------------------------------------------------------------------------