2005-06-02 14:16:43 -04:00
|
|
|
//
|
|
|
|
// main.m
|
|
|
|
// Cog
|
|
|
|
//
|
2005-07-02 17:02:06 -04:00
|
|
|
// Created by Vincent Spader on 5/7/05.
|
2006-09-04 14:46:18 -04:00
|
|
|
// Copyright Vincent Spader 2005. All rights reserved.
|
2005-06-02 14:16:43 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2022-02-07 02:49:27 -03:00
|
|
|
int main(int argc, char *argv[]) {
|
2016-06-30 01:10:29 -04:00
|
|
|
srandom((unsigned int)time(NULL));
|
2022-02-07 02:49:27 -03:00
|
|
|
|
|
|
|
return NSApplicationMain(argc, (const char **)argv);
|
2005-06-02 14:16:43 -04:00
|
|
|
}
|