Frontend:
* Changed team color handling to use red as first color and make it easier to add more colors in the future
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H
class CocoaInitializer
{
public:
CocoaInitializer();
~CocoaInitializer();
private:
class Private;
Private* d;
Private* c;
};
#endif