-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.m
25 lines (23 loc) · 797 Bytes
/
main.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SphereBot Sender
//
// Copyright 2011 Eberhard Rensch, http://pleasantsoftware.com/developer/3d
//
// This code is based on ArduinoSerial (see below)
//
// ArduinoSerial
//
// Created by Pat O'Keefe on 4/30/09.
// Copyright 2009 POP - Pat OKeefe Productions. All rights reserved.
//
// Portions of this code were derived from Andreas Mayer's work on AMSerialPort.
// AMSerialPort was absolutely necessary for the success of this project, and for
// this, I thank Andreas. This is just a glorified adaptation to present an interface
// for the ambitious programmer and work well with Arduino serial messages.
//
// AMSerialPort is Copyright 2006 Andreas Mayer.
//
#import <Cocoa/Cocoa.h>
int main(int argc, char *argv[])
{
return NSApplicationMain(argc, (const char **) argv);
}