Click here to Skip to main content
15,892,575 members
Articles / Mobile Apps / Android

EnigmaPuzzle for Android

Rate me:
Please Sign up or sign in to vote.
4.98/5 (55 votes)
17 Nov 2014CPOL16 min read 96K   12.7K   114  
Enigma Puzzle for Android – a game as difficult as the Rubik's cube
//
//  MHGameScene.h
//  EnigmaPuzzle
//
//  Created by Michael Hodel on 05.02.14.
//  Copyright (c) 2014 Michael Hodel. All rights reserved.
//

#import "MHBaseScene.h"

@interface MHGameScene : MHBaseScene

@property (nonatomic, strong) NSDate *startDate;
@property (nonatomic) int moves;
@property (nonatomic) int deltaTime;


-(id)initWithSize:(CGSize)size;


-(void)startTimer;
-(void)stopTimer;
-(void)updateTimer;

@end

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions