]> Dogcows Code - chaz/thecheat/blob - main.m
The Cheat 1.0b4
[chaz/thecheat] / main.m
1
2 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 // Project: The Cheat
4 //
5 // File: main.m
6 // Created: Sun Sep 07 2003
7 //
8 // Copyright: 2003 Chaz McGarvey. All rights reserved.
9 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
11 #import <Cocoa/Cocoa.h>
12
13 #include <stdlib.h>
14 #include <time.h>
15
16
17 int main( int argc, const char *argv[] )
18 {
19 srandom( time(0) );
20
21 return NSApplicationMain( argc, argv );
22 }
This page took 0.029217 seconds and 4 git commands to generate.