QTfrontend/CocoaInitializer.h
author smaxx
Fri, 30 Jul 2010 18:20:42 +0200
changeset 3689 e2be39ee19f0
parent 2948 3f21a9dc93d0
child 5095 15dd764b728c
permissions -rw-r--r--
Engine: * Engine will now try to load the grave "Statue" if it couldn't load a team's grave graphic (http://code.google.com/p/hedgewars/issues/detail?id=3) * Explosions may now create chunks/stones knocked out of the landscape (only supported on Olympic theme so far)

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

class CocoaInitializer
{
    public:
        CocoaInitializer();
        ~CocoaInitializer();

    private:
        class Private;
        Private* d;
                Private* c;
};

#endif