pfly.h
Upload User: shyhai1508
Upload Date: 2007-06-11
Package Size: 48k
Code Size: 0k
Category:

BREW

Development Platform:

Visual C++

  1. #ifndef _PFLY_H_
  2. #define _PFLY_H_
  3. #include "AEEAppGen.h"
  4. #include "GameWnd.h"
  5. #include "MainMenuWnd.h"
  6. #include "GameEndWnd.h"
  7. #include "ScoreListWnd.h"
  8. typedef struct _PflyApp PflyApp;
  9. struct _PflyApp{
  10. AEEApplet a;
  11. int activeView;
  12. GameWnd game;
  13. MainMenuWnd mainMenu;
  14. GameEndWnd end;
  15. ScoreListWnd score;
  16. };
  17. boolean Pfly_SetActiveWnd(PflyApp *pMe, int wnd);
  18. #endif