]> Dogcows Code - chaz/thecheat/blob - AboutBoxController.m
The Cheat 1.0b4
[chaz/thecheat] / AboutBoxController.m
1
2 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 // Project: The Cheat
4 //
5 // File: AboutBoxController.m
6 // Created: Mon Nov 24 2003
7 //
8 // Copyright: 2003 Chaz McGarvey. All rights reserved.
9 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
11 #import "AboutBoxController.h"
12
13 #include "cheat_shared.h"
14
15
16 @implementation AboutBoxController
17
18
19 - (id)init
20 {
21 return [super initWithWindowNibName:@"AboutBox"];
22 }
23
24 - (void)windowDidLoad
25 {
26 [aboutWindow center];
27 }
28
29 - (IBAction)launchWebsiteButton:(id)sender
30 {
31 LaunchWebsite();
32 }
33
34 - (IBAction)launchEmailButton:(id)sender
35 {
36 LaunchEmail();
37 }
38
39
40 @end
This page took 0.029296 seconds and 4 git commands to generate.