Skip to content

Commit

Permalink
initial commit (date approximate)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonoughe committed Jan 2, 2015
0 parents commit df44b51
Show file tree
Hide file tree
Showing 50 changed files with 4,092 additions and 0 deletions.
Binary file added English.lproj/InfoPlist.strings
Binary file not shown.
13 changes: 13 additions & 0 deletions English.lproj/MainMenu.nib/classes.nib

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions English.lproj/MainMenu.nib/info.nib

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added English.lproj/MainMenu.nib/keyedobjects.nib
Binary file not shown.
13 changes: 13 additions & 0 deletions English.lproj/MainMenu~.nib/classes.nib

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions English.lproj/MainMenu~.nib/info.nib

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added English.lproj/MainMenu~.nib/keyedobjects.nib
Binary file not shown.
32 changes: 32 additions & 0 deletions Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>com.yourcompany.neko</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSUIElement</key>
<string>1</string>
</dict>
</plist>
20 changes: 20 additions & 0 deletions MyPanel.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/* MyPanel */

#import <Cocoa/Cocoa.h>
#import "MyView.h"

@interface MyPanel : NSPanel
{
IBOutlet MyView *view;

NSArray *stop, *jare, *kaki, *akubi, *sleep, *awake, *u_move, *d_move,
*l_move, *r_move, *ul_move, *ur_move, *dl_move, *dr_move, *u_togi,
*d_togi, *l_togi, *r_togi;

id nekoState;
unsigned char tickCount, stateCount;
float moveDx, moveDy;
id myTimer;

}
@end
Loading

0 comments on commit df44b51

Please sign in to comment.