mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 14:07:03 +00:00
- Added child window support with test app - Miscellaneous cleanup - Reformatted switches
19 lines
302 B
Plaintext
19 lines
302 B
Plaintext
/*
|
|
* AppController.j
|
|
* ChildWindows
|
|
*
|
|
* Created by You on January 17, 2013.
|
|
* Copyright 2013, Your Company All rights reserved.
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
@import <AppKit/AppKit.j>
|
|
|
|
@import "AppController.j"
|
|
|
|
|
|
function main(args, namedArgs)
|
|
{
|
|
CPApplicationMain(args, namedArgs);
|
|
}
|