reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
adjusted default zoom value
polished lobby interface
updated ammosets to new weapons
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H
class CocoaInitializer
{
public:
CocoaInitializer();
~CocoaInitializer();
private:
class Private;
Private* d;
Private* c;
};
#endif