QTfrontend/CocoaInitializer.h
author mikade
Tue, 22 Feb 2011 18:51:22 +0200
changeset 4953 ebd3dae634ca
parent 2948 3f21a9dc93d0
child 5095 15dd764b728c
permissions -rw-r--r--
Fixed scoring exploit on Control and removed user branding from the map Changed hog positioning code on CTF_Blizzard so that each side is positioned in the same manner, and gets to move in the same order Fixed version control fail in CTF_Blizzard

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

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

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

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

#endif