X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fthecheat;a=blobdiff_plain;f=AboutBoxController.m;fp=AboutBoxController.m;h=68e2c6dc4a0216f26b1d2fb614e41a88150fb723;hp=0000000000000000000000000000000000000000;hb=42cf7bbe564d70233a0d73baee613f209eb00eb6;hpb=2d60a59a8ad195dd0af8f90c8d5b74a69ce7f4fa diff --git a/AboutBoxController.m b/AboutBoxController.m new file mode 100644 index 0000000..68e2c6d --- /dev/null +++ b/AboutBoxController.m @@ -0,0 +1,40 @@ + +// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// Project: The Cheat +// +// File: AboutBoxController.m +// Created: Mon Nov 24 2003 +// +// Copyright: 2003 Chaz McGarvey. All rights reserved. +// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +#import "AboutBoxController.h" + +#include "cheat_shared.h" + + +@implementation AboutBoxController + + +- (id)init +{ + return [super initWithWindowNibName:@"AboutBox"]; +} + +- (void)windowDidLoad +{ + [aboutWindow center]; +} + +- (IBAction)launchWebsiteButton:(id)sender +{ + LaunchWebsite(); +} + +- (IBAction)launchEmailButton:(id)sender +{ + LaunchEmail(); +} + + +@end