00001 #ifndef THYRIXAPPLICATION_H 00002 #define THYRIXAPPLICATION_H 00003 00004 #include "wxIncludes.h" 00005 00006 00007 class World; 00008 00009 // Define a new application type, each program should derive a class from wxApp 00010 class ThyrixApplication : public wxApp { 00011 public: 00012 ThyrixApplication(); 00013 virtual ~ThyrixApplication(); 00014 00015 // this one is called on application startup and is a good place for the app 00016 // initialization (doing it here and not in the ctor allows to have an error 00017 // return: if OnInit() returns false, the application terminates) 00018 //virtual bool OnInit(); 00019 World* world; 00020 00021 }; 00022 00023 //DECLARE_APP(ThyrixApplication) 00024 00025 #endif // THYRIXAPPLICATION_H 00026 00027
Thyrix homepage Users' guide
(C) Arxia 2004-2005