QTfrontend/CocoaInitializer.h
author unc0rr
Sun, 23 Aug 2009 12:01:55 +0000
changeset 2329 1cfb7d184ee1
parent 2261 57e99c908e7c
child 2377 f3fab2b09e0c
permissions -rw-r--r--
Fix bug with hedgehog getting into ground while throwing rope (http://hedgewars.org/node/1722)

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

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

class CocoaInitializer
{
	public:
		CocoaInitializer();
		~CocoaInitializer();
	
	private:
		class Private;
		Private* d;
};

#endif