QTfrontend/CocoaInitializer.h
author nemo
Tue, 07 Dec 2010 17:29:02 -0500
changeset 4479 59e11a5a3bfa
parent 2948 3f21a9dc93d0
child 5095 15dd764b728c
permissions -rw-r--r--
Add script hook onNewTurn to the end of AfterSwitchHedgehog. This should signal the very start of a new turn, immediately after CurrentTeam is switched.

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

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

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

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

#endif