
/* Generated by Interface Builder */

#import "InfoController.h"
#import <appkit/appkit.h>

#import "BattleZoneView.h"

@implementation InfoController

- startInfo:sender
{
	if(!battleView)
		[NXApp loadNibSection:"Info.nib" owner:self withNames:YES];

	[[battleView window] makeKeyAndOrderFront:self];
	[battleView startAnimation];
	[stellaView startAnimation];

	return self;
}

-windowWillClose:sender
{
	[battleView endAnimation];
	[stellaView endAnimation];

	return self;
}


@end
