QTfrontend/CocoaInitializer.h
author sheepluva
Sat, 01 Jan 2011 14:23:39 +0100
changeset 4802 4c1041eef577
parent 2948 3f21a9dc93d0
child 5095 15dd764b728c
permissions -rw-r--r--
fix very ancient typo in CheckCollision() that would cause check for collision at bottom and right instead of movement direction

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

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

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

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

#endif