QTfrontend/CocoaInitializer.h
author nemo
Sun, 26 Sep 2010 15:40:59 -0400
changeset 3907 5b516f0d9957
parent 2948 3f21a9dc93d0
child 5095 15dd764b728c
permissions -rw-r--r--
Allow UFO to go underwater. Keep UFO active if it runs out of fuel in the air/water, just disable controls.

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

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

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

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

#endif