Frontend:
* Simplified the code to setup config structure and prepared it to enable user accessible asset directories
* Renamed team file extensions from ".ini" to ".hwt" (Hedgewars Team)
* Added campaign progress to teams (I know, no campaign ... yet)
/* * InstallController.h * * * Created by Vittorio on 28/09/09. * Copyright 2009 __MyCompanyName__. All rights reserved. * */#ifndef INSTALLCONTROLLER_H#define INSTALLCONTROLLER_Hclass InstallController { public: virtual ~InstallController(); virtual void showInstallController() = 0; };#endif