QTfrontend/CocoaInitializer.h
author nemo
Tue, 08 Sep 2009 19:44:49 +0000
changeset 2357 babe1a55e284
parent 2261 57e99c908e7c
child 2377 f3fab2b09e0c
permissions -rw-r--r--
Add an empty weapon to avoid selection of weapons which aren't yet ready. Might all be useful to switch to amNothing in certain situations, like after using up all ropes, instead of bazooka.

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

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

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

#endif