cog/main.m

16 lines
279 B
Matlab
Raw Permalink Normal View History

2005-06-02 18:16:43 +00:00
//
// main.m
// Cog
//
2005-07-02 21:02:06 +00:00
// Created by Vincent Spader on 5/7/05.
// Copyright Vincent Spader 2005. All rights reserved.
2005-06-02 18:16:43 +00:00
//
#import <Cocoa/Cocoa.h>
int main(int argc, char *argv[]) {
srandom((unsigned int)time(NULL));
return NSApplicationMain(argc, (const char **)argv);
2005-06-02 18:16:43 +00:00
}