Engine:
* Lowered the number of feathers spawned by Birdy
* Made hogs caugh/moan once they lose health due to poison - no longer random
Frontend:
* Modified game scheme editor to lookup the number of default ammoschemes (no longer hardcoded)
* Added new default game schemes: Barrel Mayhem, Tunnel Hogs
* Added new default weapon scheme: Tunnel Hogs
/*
* Copyright (C) 2008 Remko Troncon
*/
#include "CocoaInitializer.h"
#include <AppKit/AppKit.h>
#include <Cocoa/Cocoa.h>
#include <QtDebug>
class CocoaInitializer::Private
{
public:
NSAutoreleasePool* autoReleasePool_;
};
CocoaInitializer::CocoaInitializer()
{
d = new CocoaInitializer::Private();
c = new CocoaInitializer::Private();
NSApplicationLoad();
c->autoReleasePool_ = [[NSAutoreleasePool alloc] init];
d->autoReleasePool_ = [[NSAutoreleasePool alloc] init];
}
CocoaInitializer::~CocoaInitializer()
{
[d->autoReleasePool_ release];
[c->autoReleasePool_ release];
delete c;
delete d;
}