QTfrontend/CocoaInitializer.h
author sheepluva
Wed, 29 Dec 2010 15:57:13 +0100
changeset 4776 ab956d4647a4
parent 2948 3f21a9dc93d0
child 5095 15dd764b728c
permissions -rw-r--r--
set windspeed to 0 at the very beginning of the game. (fixes DisableWind game modifier)

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

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

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

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

#endif