QTfrontend/CocoaInitializer.h
author nemo
Sun, 10 Oct 2010 20:34:48 -0400
changeset 3953 fd7ced2071a1
parent 2948 3f21a9dc93d0
child 5095 15dd764b728c
permissions -rw-r--r--
Hopefully fix bee/air attacks w/o screwing anything else up. Set mines to trigger immediately in infinite attack mode (better not use 0s mines)

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

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

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

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

#endif