mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 14:07:03 +00:00
- Enhanced -description method of CPImage and CPColor to show the exact content, especially for pattern colors. - Added CPColorWithImages() convenience function, analogous to PatternColor() function used in theme descriptors. - Added @cond/@endcond in CPColor to ignore local variables. - Sample app included.
19 lines
309 B
Plaintext
19 lines
309 B
Plaintext
/*
|
|
* AppController.j
|
|
* test
|
|
*
|
|
* Created by aparajita on May 19, 2011.
|
|
* Copyright 2011, Victory-Heart Productions All rights reserved.
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
@import <AppKit/AppKit.j>
|
|
|
|
@import "AppController.j"
|
|
|
|
|
|
function main(args, namedArgs)
|
|
{
|
|
CPApplicationMain(args, namedArgs);
|
|
}
|