This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Create the actions | |
| CCFiniteTimeAction* actionMove = | |
| CCMoveTo::create( (float)actualDuration, | |
| ccp(0 - target->getContentSize().width/2, actualY) ); | |
| CCFiniteTimeAction* actionMoveDone = | |
| CCCallFuncN::create( this, | |
| callfuncN_selector(HelloWorld::spriteMoveFinished)); | |
| target->runAction( CCSequence::create(actionMove, | |
| actionMoveDone, NULL) ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private bool LoadSnapshot() | |
| { | |
| try | |
| { | |
| var pendingResult = GamesClass.Snapshots.Open(client, SavedGameFileName, true); | |
| var result = pendingResult.AsAsync<ISnapshotsOpenSnapshotResult>().Result; | |
| var retriesCount = 2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * * | |
| * * * | |
| * * | |
| * * * | |
| * * * | |
| * * * * | |
| * * * | |
| [ 10, '2-3-2-3', '3-4-3' ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html | |
| PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html lang="" xmlns:v="urn:schemas-microsoft-com:vml"> | |
| <head> | |
| <meta name="viewport" content="width=device-width" /> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
| <meta name="x-apple-disable-message-reformatting"/> | |
| <meta name="color-scheme" content="light dark"> | |
| <meta name="supported-color-schemes" content="light dark"> |
OlderNewer