static int moveCount;
- (id)init
{
self = [super init];
if (self) {
// Initialization code here.
}
return self;
}
+(int)moveCount{
return moveCount;
}
-(void)mouseUp:(NSEvent *)theEvent{
moveCount++;
NSString *testString = [NSString stringWithFormat:@"%i",moveCount];
Block_Escape_AppDelegate *controller;
[controller updateLabel];
}