You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
232B

  1. #include "wx/app.h"
  2. #include "cosmos.h"
  3. class cosmosApp: public wxApp
  4. {
  5. public :
  6. bool OnInit();
  7. };
  8. IMPLEMENT_APP (cosmosApp)
  9. bool cosmosApp::OnInit()
  10. {
  11. cosmos* fenetre = new cosmos(NULL);
  12. fenetre -> Show(TRUE);
  13. return TRUE;
  14. }