├── .gitignore ├── Hardest.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── sfbest.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── sfbest.xcuserdatad │ └── xcschemes │ ├── Hardest.xcscheme │ └── xcschememanagement.plist ├── Hardest ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon29x29.png │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon29x29@3x.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon40x40@3x.png │ │ ├── AppIcon57x57.png │ │ ├── AppIcon57x57@2x.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ └── Contents.json │ ├── Contents.json │ ├── LaunchAnimation │ │ ├── Contents.json │ │ ├── blink-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── blink-iphone4.png │ │ ├── boy_00-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── boy_00-iphone4.png │ │ ├── boy_01-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── boy_01-iphone4.png │ │ ├── boy_02-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── boy_02-iphone4.png │ │ ├── boy_03-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── boy_03-iphone4.png │ │ ├── explosion_04-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── explosion_04-iphone4.png │ │ ├── explosion_04b-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── explosion_04b-iphone4.png │ │ ├── play_00-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── play_00-iphone4.png │ │ ├── play_01-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── play_01-iphone4.png │ │ ├── play_02-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── play_02-iphone4.png │ │ ├── smoke_stream_01-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── smoke_stream_01-iphone4.png │ │ ├── smoke_stream_02-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── smoke_stream_02-iphone4.png │ │ ├── smoke_stream_03-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── smoke_stream_03-iphone4.png │ │ └── text-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── text-iphone4.png │ ├── MainImage │ │ ├── 1111.imageset │ │ │ ├── 1111.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── FBrank_button03-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── FBrank_button03-iphone4.png │ │ ├── Result_Scene_light01-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── Result_Scene_light01-iphone4.png │ │ ├── bt_back.imageset │ │ │ ├── Contents.json │ │ │ └── bt_back.png │ │ ├── bt_blue-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── bt_blue-iphone4.png │ │ ├── bt_green.imageset │ │ │ ├── Contents.json │ │ │ └── bt_green.png │ │ ├── fail_bg.imageset │ │ │ ├── Contents.json │ │ │ └── fail_bg.jpg │ │ ├── fail_boy.imageset │ │ │ ├── Contents.json │ │ │ └── fail_boy.png │ │ ├── fail_home.imageset │ │ │ ├── Contents.json │ │ │ └── fail_home.png │ │ ├── fail_kanban.imageset │ │ │ ├── Contents.json │ │ │ └── fail_kanban.png │ │ ├── fail_prison.imageset │ │ │ ├── Contents.json │ │ │ └── fail_prison.png │ │ ├── fail_retry.imageset │ │ │ ├── Contents.json │ │ │ └── fail_retry.png │ │ ├── fail_shadow.imageset │ │ │ ├── Contents.json │ │ │ └── fail_shadow.png │ │ ├── fail_word.imageset │ │ │ ├── Contents.json │ │ │ └── fail_word.png │ │ ├── guide │ │ │ ├── 01-1-iphone4.imageset │ │ │ │ ├── 01-1-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 01-2-iphone4.imageset │ │ │ │ ├── 01-2-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02-1-iphone4.imageset │ │ │ │ ├── 02-1-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02-2-iphone4.imageset │ │ │ │ ├── 02-2-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02-4-iphone4.imageset │ │ │ │ ├── 02-4-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02-5-iphone4.imageset │ │ │ │ ├── 02-5-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 03-1-iphone4.imageset │ │ │ │ ├── 03-1-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 03-2-iphone4.imageset │ │ │ │ ├── 03-2-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── loading_bg.imageset │ │ │ ├── Contents.json │ │ │ └── loading_bg.jpg │ │ ├── mainBG │ │ │ ├── 00_Bbg01-iphone4.imageset │ │ │ │ ├── 00_Bbg01-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 00_Bbg02-iphone4.imageset │ │ │ │ ├── 00_Bbg02-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 00_Bbt-iphone4.imageset │ │ │ │ ├── 00_Bbt-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 00_Rbg01-iphone4.imageset │ │ │ │ ├── 00_Rbg01-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 00_Rbg02-iphone4.imageset │ │ │ │ ├── 00_Rbg02-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 00_Rbt-iphone4.imageset │ │ │ │ ├── 00_Rbt-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 00_Ybg01-iphone4.imageset │ │ │ │ ├── 00_Ybg01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 00_Ybg02-iphone4.imageset │ │ │ │ ├── 00_Ybg02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 00_Ybt-iphone4.imageset │ │ │ │ ├── 00_Ybt-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 00_bigBbt-iphone4.imageset │ │ │ │ ├── 00_bigBbt-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 00_bigRbt-iphone4.imageset │ │ │ │ ├── 00_bigRbt-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── home_bg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── home_bg.png │ │ ├── select_bg.imageset │ │ │ ├── Contents.json │ │ │ └── select_bg.jpg │ │ ├── select_digital.imageset │ │ │ ├── Contents.json │ │ │ └── select_digital.png │ │ ├── select_easy_bg.imageset │ │ │ ├── Contents.json │ │ │ └── select_easy_bg.jpg │ │ ├── select_hard_bg.imageset │ │ │ ├── Contents.json │ │ │ └── select_hard_bg.jpg │ │ ├── select_insane_bg.imageset │ │ │ ├── Contents.json │ │ │ └── select_insane_bg.jpg │ │ ├── select_lock_center.imageset │ │ │ ├── Contents.json │ │ │ └── select_lock_center.png │ │ ├── select_lock_left.imageset │ │ │ ├── Contents.json │ │ │ └── select_lock_left.png │ │ ├── select_lock_right.imageset │ │ │ ├── Contents.json │ │ │ └── select_lock_right.png │ │ ├── select_new.imageset │ │ │ ├── Contents.json │ │ │ └── select_new.png │ │ ├── select_normal_bg.imageset │ │ │ ├── Contents.json │ │ │ └── select_normal_bg.jpg │ │ ├── select_shadow.imageset │ │ │ ├── Contents.json │ │ │ └── select_shadow.png │ │ ├── select_stage_a.imageset │ │ │ ├── Contents.json │ │ │ └── select_stage_a.png │ │ ├── select_stage_b.imageset │ │ │ ├── Contents.json │ │ │ └── select_stage_b.png │ │ ├── select_stage_c.imageset │ │ │ ├── Contents.json │ │ │ └── select_stage_c.png │ │ ├── select_stage_d.imageset │ │ │ ├── Contents.json │ │ │ └── select_stage_d.png │ │ ├── select_stage_e.imageset │ │ │ ├── Contents.json │ │ │ └── select_stage_e.png │ │ ├── select_stage_f.imageset │ │ │ ├── Contents.json │ │ │ └── select_stage_f.png │ │ ├── select_stage_new.imageset │ │ │ ├── Contents.json │ │ │ └── select_stage_new.png │ │ ├── select_stage_normal.imageset │ │ │ ├── Contents.json │ │ │ └── select_stage_normal.png │ │ ├── select_stage_s.imageset │ │ │ ├── Contents.json │ │ │ └── select_stage_s.png │ │ ├── select_stage_s01.imageset │ │ │ ├── Contents.json │ │ │ └── select_stage_s01.png │ │ ├── select_stage_s02.imageset │ │ │ ├── Contents.json │ │ │ └── select_stage_s02.png │ │ ├── select_stage_s03.imageset │ │ │ ├── Contents.json │ │ │ └── select_stage_s03.png │ │ └── setting_bg.imageset │ │ │ ├── Contents.json │ │ │ └── setting_bg.jpg │ ├── Other │ │ ├── 00_bad-iphone4.imageset │ │ │ ├── 00_bad-iphone4.png │ │ │ └── Contents.json │ │ ├── 00_circle-iphone4.imageset │ │ │ ├── 00_circle-iphone4.png │ │ │ └── Contents.json │ │ ├── 00_cross-iphone4.imageset │ │ │ ├── 00_cross-iphone4.png │ │ │ └── Contents.json │ │ ├── 00_good-iphone4.imageset │ │ │ ├── 00_good-iphone4.png │ │ │ └── Contents.json │ │ ├── 00_great-iphone4.imageset │ │ │ ├── 00_great-iphone4.png │ │ │ └── Contents.json │ │ ├── 00_okay-iphone4.imageset │ │ │ ├── 00_okay-iphone4.png │ │ │ └── Contents.json │ │ ├── 00_perfect-iphone4.imageset │ │ │ ├── 00_perfect-iphone4.png │ │ │ └── Contents.json │ │ ├── 00_perfect01-iphone4.imageset │ │ │ ├── 00_perfect01-iphone4.png │ │ │ └── Contents.json │ │ ├── 00_perfect02-iphone4.imageset │ │ │ ├── 00_perfect02-iphone4.png │ │ │ └── Contents.json │ │ ├── 00_perfect03-iphone4.imageset │ │ │ ├── 00_perfect03-iphone4.png │ │ │ └── Contents.json │ │ └── Contents.json │ ├── OverGame │ │ ├── Contents.json │ │ ├── Instant_bg-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── Instant_bg-iphone4.png │ │ ├── Instant_out-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── Instant_out-iphone4.png │ │ ├── Instant_red-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── Instant_red-iphone4.png │ │ ├── Instant_referee01-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── Instant_referee01-iphone4.png │ │ ├── Instant_referee02-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── Instant_referee02-iphone4.png │ │ ├── Instant_word-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── Instant_word-iphone4.png │ │ ├── cureent_score.imageset │ │ │ ├── Contents.json │ │ │ └── cureent_score.png │ │ ├── fail_button01-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── fail_button01-iphone4.png │ │ ├── high_score.imageset │ │ │ ├── Contents.json │ │ │ └── high_score.png │ │ ├── instantfail_big-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── instantfail_big-iphone4.png │ │ ├── new_record.imageset │ │ │ ├── Contents.json │ │ │ └── new_record.png │ │ ├── other_score.imageset │ │ │ ├── Contents.json │ │ │ └── other_score.png │ │ ├── rank_bg.imageset │ │ │ ├── Contents.json │ │ │ └── rank_bg.jpg │ │ ├── rank_home.imageset │ │ │ ├── Contents.json │ │ │ └── rank_home.png │ │ ├── rank_retry.imageset │ │ │ ├── Contents.json │ │ │ └── rank_retry.png │ │ ├── scene_light01.imageset │ │ │ ├── Contents.json │ │ │ └── scene_light01.png │ │ ├── scene_light02.imageset │ │ │ ├── Contents.json │ │ │ └── scene_light02.png │ │ ├── scene_light03.imageset │ │ │ ├── Contents.json │ │ │ └── scene_light03.png │ │ ├── scene_new.imageset │ │ │ ├── Contents.json │ │ │ └── scene_new.png │ │ ├── score_a.imageset │ │ │ ├── Contents.json │ │ │ └── score_a.png │ │ ├── score_b.imageset │ │ │ ├── Contents.json │ │ │ └── score_b.png │ │ ├── score_border.imageset │ │ │ ├── Contents.json │ │ │ └── score_border.png │ │ ├── score_c.imageset │ │ │ ├── Contents.json │ │ │ └── score_c.png │ │ ├── score_d.imageset │ │ │ ├── Contents.json │ │ │ └── score_d.png │ │ ├── score_e.imageset │ │ │ ├── Contents.json │ │ │ └── score_e.png │ │ ├── score_f.imageset │ │ │ ├── Contents.json │ │ │ └── score_f.png │ │ ├── score_hint.imageset │ │ │ ├── Contents.json │ │ │ └── score_hint.png │ │ └── score_s.imageset │ │ │ ├── Contents.json │ │ │ └── score_s.png │ ├── Pause │ │ ├── Contents.json │ │ ├── ad01.imageset │ │ │ ├── Contents.json │ │ │ └── ad01.png │ │ ├── ad02.imageset │ │ │ ├── Contents.json │ │ │ └── ad02.png │ │ ├── ad03.imageset │ │ │ ├── Contents.json │ │ │ └── ad03.png │ │ ├── ad04.imageset │ │ │ ├── Contents.json │ │ │ └── ad04.png │ │ ├── ad1.imageset │ │ │ ├── Contents.json │ │ │ └── ad1.png │ │ ├── ad2.imageset │ │ │ ├── Contents.json │ │ │ └── ad2.png │ │ ├── ad3.imageset │ │ │ ├── Contents.json │ │ │ └── ad3.png │ │ ├── bt_download-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── bt_download-iphone4.png │ │ ├── bt_home.imageset │ │ │ ├── Contents.json │ │ │ └── bt_home.png │ │ ├── bt_resume.imageset │ │ │ ├── Contents.json │ │ │ └── bt_resume.png │ │ ├── bt_setting.imageset │ │ │ ├── Contents.json │ │ │ └── bt_setting.png │ │ ├── page_left.imageset │ │ │ ├── Contents.json │ │ │ └── page_left.png │ │ ├── page_right.imageset │ │ │ ├── Contents.json │ │ │ └── page_right.png │ │ ├── pagedot01.imageset │ │ │ ├── Contents.json │ │ │ └── pagedot01.png │ │ ├── pagedot02.imageset │ │ │ ├── Contents.json │ │ │ └── pagedot02.png │ │ └── pause_bg.imageset │ │ │ ├── Contents.json │ │ │ └── pause_bg.jpg │ ├── Prepare │ │ ├── Contents.json │ │ ├── go.imageset │ │ │ ├── Contents.json │ │ │ └── go.png │ │ ├── ing_pause.imageset │ │ │ ├── Contents.json │ │ │ └── ing_pause.png │ │ ├── ing_retry.imageset │ │ │ ├── Contents.json │ │ │ └── ing_retry.png │ │ ├── ing_word.imageset │ │ │ ├── Contents.json │ │ │ └── ing_word.png │ │ ├── ready.imageset │ │ │ ├── Contents.json │ │ │ └── ready.png │ │ ├── ready_btplay.imageset │ │ │ ├── Contents.json │ │ │ └── ready_btplay.png │ │ ├── ready_intro.imageset │ │ │ ├── Contents.json │ │ │ └── ready_intro.png │ │ ├── ready_loading.imageset │ │ │ ├── Contents.json │ │ │ └── ready_loading.png │ │ ├── ready_play.imageset │ │ │ ├── Contents.json │ │ │ └── ready_play.png │ │ ├── ready_score.imageset │ │ │ ├── Contents.json │ │ │ └── ready_score.png │ │ ├── ready_score_arrow.imageset │ │ │ ├── Contents.json │ │ │ └── ready_score_arrow.png │ │ ├── stage35_btn01-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── stage35_btn01-iphone4.png │ │ └── stage35_btn02-iphone4.imageset │ │ │ ├── Contents.json │ │ │ └── stage35_btn02-iphone4.png │ ├── Stage │ │ ├── 10 │ │ │ ├── 08_bg-iphone4.imageset │ │ │ │ ├── 08_bg-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 08_left-iphone4.imageset │ │ │ │ ├── 08_left-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 08_right-iphone4.imageset │ │ │ │ ├── 08_right-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 11 │ │ │ ├── 13_bg-iphone4.imageset │ │ │ │ ├── 13_bg-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 13_equal-iphone4.imageset │ │ │ │ ├── 13_equal-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 13_hand-iphone4.imageset │ │ │ │ ├── 13_hand-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 13_line-iphone4.imageset │ │ │ │ ├── 13_line-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 13_plus-iphone4.imageset │ │ │ │ ├── 13_plus-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── stage13_0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage13_0.png │ │ │ ├── stage13_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage13_1.png │ │ │ ├── stage13_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage13_2.png │ │ │ ├── stage13_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage13_3.png │ │ │ ├── stage13_4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage13_4.png │ │ │ ├── stage13_5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage13_5.png │ │ │ ├── stage13_6.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage13_6.png │ │ │ ├── stage13_7.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage13_7.png │ │ │ ├── stage13_8.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage13_8.png │ │ │ └── stage13_9.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage13_9.png │ │ ├── 12 │ │ │ ├── 01_catch-iphone4.imageset │ │ │ │ ├── 01_catch-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 01_egg-iphone4.imageset │ │ │ │ ├── 01_egg-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 01_fail-iphone4.imageset │ │ │ │ ├── 01_fail-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 01_holdhand-iphone4.imageset │ │ │ │ ├── 01_holdhand-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 01_line-iphone4.imageset │ │ │ │ ├── 01_line-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 01_normal-iphone4.imageset │ │ │ │ ├── 01_normal-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 01_success-iphone4.imageset │ │ │ │ ├── 01_success-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 13 │ │ │ ├── 11_Bbt-iphone4.imageset │ │ │ │ ├── 11_Bbt-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 11_Bbt_icon-iphone4.imageset │ │ │ │ ├── 11_Bbt_icon-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 11_Rbt-iphone4.imageset │ │ │ │ ├── 11_Rbt-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 11_Rbt_icon-iphone4.imageset │ │ │ │ ├── 11_Rbt_icon-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 11_Ybt-iphone4.imageset │ │ │ │ ├── 11_Ybt-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 11_Ybt_icon-iphone4.imageset │ │ │ │ ├── 11_Ybt_icon-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 11_bg-iphone4.imageset │ │ │ │ ├── 11_bg-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 11_boy-iphone4.imageset │ │ │ │ ├── 11_boy-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 11_dad-iphone4.imageset │ │ │ │ ├── 11_dad-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 11_grandma-iphone4.imageset │ │ │ │ ├── 11_grandma-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 11_hand-iphone4.imageset │ │ │ │ ├── 11_hand-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 11_hand-iphone4Right.imageset │ │ │ │ ├── 11_hand-iphone4Right.png │ │ │ │ └── Contents.json │ │ │ ├── 11_tick-iphone4.imageset │ │ │ │ ├── 11_tick-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 14 │ │ │ ├── 16_bg-iphone4.imageset │ │ │ │ ├── 16_bg-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 16_bone-iphone4.imageset │ │ │ │ ├── 16_bone-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 16_dog-iphone4.imageset │ │ │ │ ├── 16_dog-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 16_eye_left-iphone4.imageset │ │ │ │ ├── 16_eye_left-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 16_eye_right-iphone4.imageset │ │ │ │ ├── 16_eye_right-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 16_eyeball-iphone4.imageset │ │ │ │ ├── 16_eyeball-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 16_leftarrow-iphone4-1.imageset │ │ │ │ ├── 16_leftarrow-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 16_leftarrow-iphone4.imageset │ │ │ │ ├── 16_leftarrow-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 16_phone-iphone4.imageset │ │ │ │ ├── 16_phone-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 15 │ │ │ ├── 18_Bwood-iphone4.imageset │ │ │ │ ├── 18_Bwood-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_Bwood_down-iphone4.imageset │ │ │ │ ├── 18_Bwood_down-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_Rwood-iphone4.imageset │ │ │ │ ├── 18_Rwood-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_Rwood_down-iphone4.imageset │ │ │ │ ├── 18_Rwood_down-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_Ywood-iphone4.imageset │ │ │ │ ├── 18_Ywood-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_Ywood_down-iphone4.imageset │ │ │ │ ├── 18_Ywood_down-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_caution-iphone4.imageset │ │ │ │ ├── 18_caution-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_crocodile-iphone4.imageset │ │ │ │ ├── 18_crocodile-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_crocodile1-iphone4.imageset │ │ │ │ ├── 18_crocodile1-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_duck01-iphone4.imageset │ │ │ │ ├── 18_duck01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_duck02-iphone4.imageset │ │ │ │ ├── 18_duck02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_flag-iphone4.imageset │ │ │ │ ├── 18_flag-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_hold-iphone4.imageset │ │ │ │ ├── 18_hold-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_island01-iphone4.imageset │ │ │ │ ├── 18_island01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_island02-iphone4.imageset │ │ │ │ ├── 18_island02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_jump-iphone4.imageset │ │ │ │ ├── 18_jump-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_jumpL-iphone4.imageset │ │ │ │ ├── 18_jumpL-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_jumpR-iphone4.imageset │ │ │ │ ├── 18_jumpR-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_stone-iphone4.imageset │ │ │ │ ├── 18_stone-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_water01-iphone4.imageset │ │ │ │ ├── 18_water01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_water02-iphone4.imageset │ │ │ │ ├── 18_water02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_water1-iphone4.imageset │ │ │ │ ├── 18_water1-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 18_water2-iphone4.imageset │ │ │ │ ├── 18_water2-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── stage36_bg-iphone4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage36_bg-iphone4.jpg │ │ ├── 16 │ │ │ ├── 21_bg-iphone4.imageset │ │ │ │ ├── 21_bg-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 21_blog-iphone4.imageset │ │ │ │ ├── 21_blog-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 21_down-iphone4.imageset │ │ │ │ ├── 21_down-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 21_downman-iphone4.imageset │ │ │ │ ├── 21_downman-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 21_hand-iphone4.imageset │ │ │ │ ├── 21_hand-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 21_up-iphone4.imageset │ │ │ │ ├── 21_up-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 21_upman-iphone4.imageset │ │ │ │ ├── 21_upman-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 17 │ │ │ ├── 15_bg-iphone4.imageset │ │ │ │ ├── 15_bg-iphone4.jpg │ │ │ │ └── Contents.json │ │ │ ├── 15_button-iphone4.imageset │ │ │ │ ├── 15_button-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 15_hand-iphone4.imageset │ │ │ │ ├── 15_hand-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 15_nose01-iphone4.imageset │ │ │ │ ├── 15_nose01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 15_nose02-iphone4.imageset │ │ │ │ ├── 15_nose02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 15_nose03-iphone4.imageset │ │ │ │ ├── 15_nose03-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 15_nose04-iphone4.imageset │ │ │ │ ├── 15_nose04-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 15_strength01-iphone4.imageset │ │ │ │ ├── 15_strength01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 15_strength02-iphone4.imageset │ │ │ │ ├── 15_strength02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 15_strength03-iphone4.imageset │ │ │ │ ├── 15_strength03-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 15_strength04-iphone4.imageset │ │ │ │ ├── 15_strength04-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 15_strength05-iphone4.imageset │ │ │ │ ├── 15_strength05-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 15_strength06-iphone4.imageset │ │ │ │ ├── 15_strength06-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 18 │ │ │ ├── 20_Bflower-iphone4.imageset │ │ │ │ ├── 20_Bflower-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 20_Bheart-iphone4.imageset │ │ │ │ ├── 20_Bheart-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 20_Rheart-iphone4.imageset │ │ │ │ ├── 20_Rheart-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 20_card-iphone4.imageset │ │ │ │ ├── 20_card-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 20_diamond-iphone4.imageset │ │ │ │ ├── 20_diamond-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 20_same-iphone4.imageset │ │ │ │ ├── 20_same-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 19 │ │ │ ├── 06_bg-iphone4.imageset │ │ │ │ ├── 06_bg-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_fishingrod-iphone4.imageset │ │ │ │ ├── 06_fishingrod-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_fishline-iphone4.imageset │ │ │ │ ├── 06_fishline-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_manback-iphone4.imageset │ │ │ │ ├── 06_manback-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_phone01-iphone4.imageset │ │ │ │ ├── 06_phone01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_phone02-iphone4.imageset │ │ │ │ ├── 06_phone02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_press-iphone4.imageset │ │ │ │ ├── 06_press-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_pull-iphone4.imageset │ │ │ │ ├── 06_pull-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_smileman-iphone4.imageset │ │ │ │ ├── 06_smileman-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_success01-iphone4.imageset │ │ │ │ ├── 06_success01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_success02-iphone4.imageset │ │ │ │ ├── 06_success02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_success03-iphone4.imageset │ │ │ │ ├── 06_success03-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_water01-iphone4.imageset │ │ │ │ ├── 06_water01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 06_water02-iphone4.imageset │ │ │ │ ├── 06_water02-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 20 │ │ │ ├── 10_dice01-iphone4.imageset │ │ │ │ ├── 10_dice01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 10_dice02-iphone4.imageset │ │ │ │ ├── 10_dice02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 10_dice03-iphone4.imageset │ │ │ │ ├── 10_dice03-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 10_dice04-iphone4.imageset │ │ │ │ ├── 10_dice04-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 10_dice05-iphone4.imageset │ │ │ │ ├── 10_dice05-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 10_dice06-iphone4.imageset │ │ │ │ ├── 10_dice06-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 10_dice_ad01-iphone4.imageset │ │ │ │ ├── 10_dice_ad01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 10_dice_ad02-iphone4.imageset │ │ │ │ ├── 10_dice_ad02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 10_dice_ad03-iphone4.imageset │ │ │ │ ├── 10_dice_ad03-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 10_dice_ad04-iphone4.imageset │ │ │ │ ├── 10_dice_ad04-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 10_dice_ad05-iphone4.imageset │ │ │ │ ├── 10_dice_ad05-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 21 │ │ │ ├── 17_bigger-iphone4.imageset │ │ │ │ ├── 17_bigger-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 17_blackline-iphone4.imageset │ │ │ │ ├── 17_blackline-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 17_line-iphone4.imageset │ │ │ │ ├── 17_line-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 17_triangle-iphone4.imageset │ │ │ │ ├── 17_triangle-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 22 │ │ │ ├── 24_Bbt_fart-iphone4.imageset │ │ │ │ ├── 24_Bbt_fart-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_Bbt_left-iphone4.imageset │ │ │ │ ├── 24_Bbt_left-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_Bbt_stand-iphone4.imageset │ │ │ │ ├── 24_Bbt_stand-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_Rbt_fart-iphone4.imageset │ │ │ │ ├── 24_Rbt_fart-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_Rbt_right-iphone4.imageset │ │ │ │ ├── 24_Rbt_right-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_Rbt_stand-iphone4.imageset │ │ │ │ ├── 24_Rbt_stand-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_Ybt_fart-iphone4.imageset │ │ │ │ ├── 24_Ybt_fart-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_Ybt_left-iphone4.imageset │ │ │ │ ├── 24_Ybt_left-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_Ybt_right-iphone4.imageset │ │ │ │ ├── 24_Ybt_right-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_Ybt_stand-iphone4.imageset │ │ │ │ ├── 24_Ybt_stand-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_fart-iphone4.imageset │ │ │ │ ├── 24_fart-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_fart01-iphone4.imageset │ │ │ │ ├── 24_fart01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_shadow-iphone4.imageset │ │ │ │ ├── 24_shadow-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_watch-iphone4.imageset │ │ │ │ ├── 24_watch-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 24_yourturn-iphone4.imageset │ │ │ │ ├── 24_yourturn-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 23 │ │ │ ├── 12_Bboy-iphone4.imageset │ │ │ │ ├── 12_Bboy-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 12_Rgirl-iphone4.imageset │ │ │ │ ├── 12_Rgirl-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 12_Yboy-iphone4.imageset │ │ │ │ ├── 12_Yboy-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 12_bg-iphone4.imageset │ │ │ │ ├── 12_bg-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 12_bus-iphone4.imageset │ │ │ │ ├── 12_bus-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 12_bus_Bboy-iphone4.imageset │ │ │ │ ├── 12_bus_Bboy-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 12_bus_Rgirl-iphone4.imageset │ │ │ │ ├── 12_bus_Rgirl-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 12_bus_Yboy-iphone4.imageset │ │ │ │ ├── 12_bus_Yboy-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 12_bus_window-iphone4.imageset │ │ │ │ ├── 12_bus_window-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 24 │ │ │ ├── Contents.json │ │ │ ├── stage27_bg01-iphone4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage27_bg01-iphone4.png │ │ │ ├── stage27_bg02-iphone4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage27_bg02-iphone4.png │ │ │ ├── stage27_bg03-iphone4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage27_bg03-iphone4.png │ │ │ ├── stage27_btn-iphone4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage27_btn-iphone4.png │ │ │ ├── stage27_pa01-iphone4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage27_pa01-iphone4.png │ │ │ ├── stage27_pa0102-iphone4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage27_pa0102-iphone4.png │ │ │ ├── stage27_run01-iphone4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage27_run01-iphone4.png │ │ │ ├── stage27_run02-iphone4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage27_run02-iphone4.png │ │ │ ├── stage27_shoes01-iphone4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage27_shoes01-iphone4.png │ │ │ └── stage27_start01-iphone4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stage27_start01-iphone4.png │ │ ├── 01 │ │ │ ├── 01-bigfeather.imageset │ │ │ │ ├── 01-bigfeather.png │ │ │ │ └── Contents.json │ │ │ ├── 01-btfeather.imageset │ │ │ │ ├── 01-btfeather.png │ │ │ │ └── Contents.json │ │ │ ├── 01-feet01.imageset │ │ │ │ ├── 01-feet01.png │ │ │ │ └── Contents.json │ │ │ ├── 01-feet02.imageset │ │ │ │ ├── 01-feet02.png │ │ │ │ └── Contents.json │ │ │ ├── 01-feet03.imageset │ │ │ │ ├── 01-feet03.png │ │ │ │ └── Contents.json │ │ │ ├── 01_miss.imageset │ │ │ │ ├── 01_miss.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 02 │ │ │ ├── 09_blue-iphone4.imageset │ │ │ │ ├── 09_blue-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 09_draw-iphone4.imageset │ │ │ │ ├── 09_draw-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 09_fraction01-iphone4.imageset │ │ │ │ ├── 09_fraction01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 09_fraction02-iphone4.imageset │ │ │ │ ├── 09_fraction02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 09_fraction03-iphone4.imageset │ │ │ │ ├── 09_fraction03-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 09_fraction04-iphone4.imageset │ │ │ │ ├── 09_fraction04-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 09_fraction05-iphone4.imageset │ │ │ │ ├── 09_fraction05-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 09_hand01-iphone4.imageset │ │ │ │ ├── 09_hand01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 09_hand01-iphone4right.imageset │ │ │ │ ├── 09_hand01-iphone4right.png │ │ │ │ └── Contents.json │ │ │ ├── 09_hand02-iphone4.imageset │ │ │ │ ├── 09_hand02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 09_hand02-iphone4right.imageset │ │ │ │ ├── 09_hand02-iphone4right.png │ │ │ │ └── Contents.json │ │ │ ├── 09_hand03-iphone4.imageset │ │ │ │ ├── .DS_Store │ │ │ │ ├── 09_hand03-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 09_hand03-iphone4right.imageset │ │ │ │ ├── 09_hand03-iphone4right.png │ │ │ │ └── Contents.json │ │ │ ├── 09_red-iphone4.imageset │ │ │ │ ├── 09_red-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 09_word02-iphone4.imageset │ │ │ │ ├── 09_word02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 09_word03-iphone4.imageset │ │ │ │ ├── 09_word03-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 03 │ │ │ ├── 23_Barrow-iphone4.imageset │ │ │ │ ├── 23_Barrow-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 23_Rarrow-iphone4.imageset │ │ │ │ ├── 23_Rarrow-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 23_balance01-iphone4.imageset │ │ │ │ ├── 23_balance01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 23_balance02-iphone4.imageset │ │ │ │ ├── 23_balance02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 23_bg-iphone4.imageset │ │ │ │ ├── 23_bg-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 23_boybody-iphone4.imageset │ │ │ │ ├── 23_boybody-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 23_boyhead-iphone4.imageset │ │ │ │ ├── 23_boyhead-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 23_bticon-iphone4.imageset │ │ │ │ ├── 23_bticon-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 23_danger-iphone4.imageset │ │ │ │ ├── 23_danger-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 23_snivel-iphone4.imageset │ │ │ │ ├── 23_snivel-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 04 │ │ │ ├── 05_Rfoot-iphone4.imageset │ │ │ │ ├── 05_Rfoot-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 05_Yfoot-iphone4.imageset │ │ │ │ ├── 05_Yfoot-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 05_bg-iphone4.imageset │ │ │ │ ├── 05_bg-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 05_commode-iphone4.imageset │ │ │ │ ├── 05_commode-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 05_floor-iphone4.imageset │ │ │ │ ├── 05_floor-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 05_hold-iphone4.imageset │ │ │ │ ├── 05_hold-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 05_stair-iphone4.imageset │ │ │ │ ├── 05_stair-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 05_success01-iphone4.imageset │ │ │ │ ├── 05_success01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 05_success02-iphone4.imageset │ │ │ │ ├── 05_success02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 05_walk01-iphone4.imageset │ │ │ │ ├── 05_walk01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 05_walk02-iphone4.imageset │ │ │ │ ├── 05_walk02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 05_walk03-iphone4.imageset │ │ │ │ ├── 05_walk03-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 05_walk04-iphone4.imageset │ │ │ │ ├── 05_walk04-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 05_water-iphone4.imageset │ │ │ │ ├── 05_water-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 05 │ │ │ ├── 03_background-iphone4.imageset │ │ │ │ ├── 03_background-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 03_button-iphone4.imageset │ │ │ │ ├── 03_button-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 03_cones-iphone4.imageset │ │ │ │ ├── 03_cones-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 03_dashed01-iphone4.imageset │ │ │ │ ├── 03_dashed01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 03_dashed02-iphone4.imageset │ │ │ │ ├── 03_dashed02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 03_ice01-iphone4.imageset │ │ │ │ ├── 03_ice01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 03_ice02-iphone4.imageset │ │ │ │ ├── 03_ice02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 03_ice03-iphone4.imageset │ │ │ │ ├── 03_ice03-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 03_ice04-iphone4.imageset │ │ │ │ ├── 03_ice04-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 03_ice05-iphone4.imageset │ │ │ │ ├── 03_ice05-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 03_ice06-iphone4.imageset │ │ │ │ ├── 03_ice06-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 06 │ │ │ ├── 19_beforegame-iphone4.imageset │ │ │ │ ├── 19_beforegame-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 19_bg-iphone4.imageset │ │ │ │ ├── 19_bg-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 19_done-iphone4.imageset │ │ │ │ ├── 19_done-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 19_hand-iphone4-1.imageset │ │ │ │ ├── 19_hand-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 19_hand-iphone4.imageset │ │ │ │ ├── 19_hand-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 19_man-iphone4.imageset │ │ │ │ ├── 19_man-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 19_man_left-iphone4.imageset │ │ │ │ ├── 19_man_left-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 19_man_right-iphone4.imageset │ │ │ │ ├── 19_man_right-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 19_slap-iphone4.imageset │ │ │ │ ├── 19_slap-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 07 │ │ │ ├── 004_gun-iphone4.imageset │ │ │ │ ├── 004_gun-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 004_holes-iphone4.imageset │ │ │ │ ├── 004_holes-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 04_background-iphone4.imageset │ │ │ │ ├── 04_background-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 04_cup01-iphone4.imageset │ │ │ │ ├── 04_cup01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 04_cup02-iphone4.imageset │ │ │ │ ├── 04_cup02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 04_cup03-iphone4.imageset │ │ │ │ ├── 04_cup03-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 04_light-iphone4.imageset │ │ │ │ ├── 04_light-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 08 │ │ │ ├── 02_background01-iphone4.imageset │ │ │ │ ├── 02_background01-iphone4.jpeg │ │ │ │ └── Contents.json │ │ │ ├── 02_camera-iphone4.imageset │ │ │ │ ├── 02_camera-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_drapes_left-iphone4.imageset │ │ │ │ ├── 02_drapes_left-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_drapes_right-iphone4.imageset │ │ │ │ ├── 02_drapes_right-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_girl01-iphone4.imageset │ │ │ │ ├── 02_girl01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_girl0101-iphone4.imageset │ │ │ │ ├── 02_girl0101-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_girl0102-iphone4.imageset │ │ │ │ ├── 02_girl0102-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_girl02-iphone4.imageset │ │ │ │ ├── 02_girl02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_girl0201-iphone4.imageset │ │ │ │ ├── 02_girl0201-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_girl0202-iphone4.imageset │ │ │ │ ├── 02_girl0202-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_girl03-iphone4.imageset │ │ │ │ ├── 02_girl03-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_girl0301-iphone4.imageset │ │ │ │ ├── 02_girl0301-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_girl0302-iphone4.imageset │ │ │ │ ├── 02_girl0302-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_robot01-iphone4.imageset │ │ │ │ ├── 02_robot01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_robot0101-iphone4.imageset │ │ │ │ ├── 02_robot0101-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 02_robot0102-iphone4.imageset │ │ │ │ ├── 02_robot0102-iphone4.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── 09 │ │ │ ├── 14_bomb-iphone4.imageset │ │ │ │ ├── 14_bomb-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 14_explosion01-iphone4.imageset │ │ │ │ ├── 14_explosion01-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 14_explosion02-iphone4.imageset │ │ │ │ ├── 14_explosion02-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 14_explosion03-iphone4.imageset │ │ │ │ ├── 14_explosion03-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 14_fail-iphone4.imageset │ │ │ │ ├── 14_fail-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 14_fail_bg-iphone4.imageset │ │ │ │ ├── 14_fail_bg-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 14_line-iphone4.imageset │ │ │ │ ├── 14_line-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 14_penalty-iphone4.imageset │ │ │ │ ├── 14_penalty-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── 14_stopsign-iphone4.imageset │ │ │ │ ├── 14_stopsign-iphone4.png │ │ │ │ └── Contents.json │ │ │ ├── AAAA.imageset │ │ │ │ ├── AAAA.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ └── Contents.json │ └── StageViewImage │ │ ├── Contents.json │ │ ├── select_image01-iphone4.imageset │ │ ├── Contents.json │ │ └── select_image01-iphone4.png │ │ ├── select_image01.imageset │ │ ├── Contents.json │ │ └── select_image01.png │ │ ├── select_image02.imageset │ │ ├── Contents.json │ │ └── select_image02.png │ │ ├── select_image03-iphone4.imageset │ │ ├── Contents.json │ │ └── select_image03-iphone4.png │ │ ├── select_image03.imageset │ │ ├── Contents.json │ │ └── select_image03.png │ │ ├── select_image04-iphone4aa.imageset │ │ ├── Contents.json │ │ └── select_image04-iphone4aa.png │ │ ├── select_image04.imageset │ │ ├── Contents.json │ │ └── select_image04.png │ │ ├── select_image05.imageset │ │ ├── Contents.json │ │ └── select_image05.png │ │ ├── select_image06.imageset │ │ ├── Contents.json │ │ └── select_image06.png │ │ ├── select_image07.imageset │ │ ├── Contents.json │ │ └── select_image07.png │ │ ├── select_image08.imageset │ │ ├── Contents.json │ │ └── select_image08.png │ │ ├── select_image09.imageset │ │ ├── Contents.json │ │ └── select_image09.png │ │ ├── select_image10.imageset │ │ ├── Contents.json │ │ └── select_image10.png │ │ ├── select_image11.imageset │ │ ├── Contents.json │ │ └── select_image11.png │ │ ├── select_image12.imageset │ │ ├── Contents.json │ │ └── select_image12.png │ │ ├── select_image13.imageset │ │ ├── Contents.json │ │ └── select_image13.png │ │ ├── select_image14.imageset │ │ ├── Contents.json │ │ └── select_image14.png │ │ ├── select_image15.imageset │ │ ├── Contents.json │ │ └── select_image15.png │ │ ├── select_image16.imageset │ │ ├── Contents.json │ │ └── select_image16.png │ │ ├── select_image17.imageset │ │ ├── Contents.json │ │ └── select_image17.png │ │ ├── select_image18.imageset │ │ ├── Contents.json │ │ └── select_image18.png │ │ ├── select_image19.imageset │ │ ├── Contents.json │ │ └── select_image19.png │ │ ├── select_image20.imageset │ │ ├── Contents.json │ │ └── select_image20.png │ │ ├── select_image21.imageset │ │ ├── Contents.json │ │ └── select_image21.png │ │ ├── select_image22.imageset │ │ ├── Contents.json │ │ └── select_image22.png │ │ ├── select_image23.imageset │ │ ├── Contents.json │ │ └── select_image23.png │ │ └── select_image24.imageset │ │ ├── Contents.json │ │ └── select_image24.png ├── Base.lproj │ └── Main.storyboard ├── Classes │ ├── BaseClass │ │ ├── BaseView │ │ │ ├── WNXCountDownLabel.h │ │ │ ├── WNXCountDownLabel.m │ │ │ ├── WNXFailView.h │ │ │ ├── WNXFailView.m │ │ │ ├── WNXFailView.xib │ │ │ ├── WNXFullBackgroundView.h │ │ │ ├── WNXFullBackgroundView.m │ │ │ ├── WNXHighScroeTextView.h │ │ │ ├── WNXHighScroeTextView.m │ │ │ ├── WNXReadyGoView.h │ │ │ ├── WNXReadyGoView.m │ │ │ ├── WNXResultScoreView.h │ │ │ ├── WNXResultScoreView.m │ │ │ ├── WNXScoreboardCountView.h │ │ │ ├── WNXScoreboardCountView.m │ │ │ ├── WNXScoreboardCountView.xib │ │ │ ├── WNXStrokeLabel.h │ │ │ ├── WNXStrokeLabel.m │ │ │ ├── WNXTimeCountView.h │ │ │ ├── WNXTimeCountView.m │ │ │ └── WNXTimeCountView.xib │ │ └── BaseViewController │ │ │ ├── WNXBackViewController.h │ │ │ ├── WNXBackViewController.m │ │ │ ├── WNXBackgroundViewController.h │ │ │ ├── WNXBackgroundViewController.m │ │ │ ├── WNXBaseGameViewController.h │ │ │ ├── WNXBaseGameViewController.m │ │ │ ├── WNXBaseNavigationController.h │ │ │ ├── WNXBaseNavigationController.m │ │ │ ├── WNXFailViewController.h │ │ │ ├── WNXFailViewController.m │ │ │ ├── WNXFailViewController.xib │ │ │ ├── WNXPauseViewController.h │ │ │ ├── WNXPauseViewController.m │ │ │ ├── WNXPauseViewController.xib │ │ │ ├── WNXRYBViewController.h │ │ │ ├── WNXRYBViewController.m │ │ │ ├── WNXResultViewController.h │ │ │ ├── WNXResultViewController.m │ │ │ ├── WNXResultViewController.xib │ │ │ ├── WNXTwoButtonViewController.h │ │ │ └── WNXTwoButtonViewController.m │ ├── Categories │ │ ├── UIApplication+WNXLoad.h │ │ ├── UIApplication+WNXLoad.m │ │ ├── UIColor+WNXColor.h │ │ ├── UIColor+WNXColor.m │ │ ├── UIView+WNXImage.h │ │ └── UIView+WNXImage.m │ ├── CommonTools │ │ ├── SoundNamesHeader.h │ │ ├── WNXGameControllerViewManager.h │ │ ├── WNXGameControllerViewManager.m │ │ ├── WNXSoundToolManager.h │ │ ├── WNXStageInfoManager.h │ │ ├── WNXStageInfoManager.m │ │ └── WXNSoundToolManager.m │ ├── Controller │ │ ├── WNXPrepareViewController.h │ │ ├── WNXPrepareViewController.m │ │ ├── WNXRareViewController.h │ │ ├── WNXRareViewController.m │ │ ├── WNXSelectStageViewController.h │ │ ├── WNXSelectStageViewController.m │ │ ├── WNXSettingViewController.h │ │ └── WNXSettingViewController.m │ ├── Model │ │ ├── WNXStage.h │ │ ├── WNXStage.m │ │ ├── WNXStageInfo.h │ │ └── WNXStageInfo.m │ ├── Resources │ │ ├── Font │ │ │ ├── Transformers Movie 变形金刚字体.ttf │ │ │ └── arial.ttf │ │ ├── Images │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ └── Default@2x.png │ │ ├── Plist │ │ │ ├── home.plist │ │ │ └── stages.plist │ │ └── Sound │ │ │ ├── bg_music.mp3 │ │ │ └── sound.bundle │ │ │ ├── 000-click.mp3 │ │ │ ├── 01_eggHit.mp3 │ │ │ ├── 01_yeah.mp3 │ │ │ ├── 02_ok.mp3 │ │ │ ├── 02_takePhoto.mp3 │ │ │ ├── 03_arrival.mp3 │ │ │ ├── 03_fall.mp3 │ │ │ ├── 04_gun.mp3 │ │ │ ├── 04_reload.mp3 │ │ │ ├── 05_toiletflush.mp3 │ │ │ ├── 06_catchFish.mp3 │ │ │ ├── 06_reelin.mp3 │ │ │ ├── 08_ansCorrect.mp3 │ │ │ ├── 08_jackpotStop.mp3 │ │ │ ├── 08_rolling.mp3 │ │ │ ├── 08_rolling2.mp3 │ │ │ ├── 09_right.mp3 │ │ │ ├── 09_throw.mp3 │ │ │ ├── 09_wrong.mp3 │ │ │ ├── 10_rollDice.mp3 │ │ │ ├── 12_busPassBy.mp3 │ │ │ ├── 13_chalkboard.mp3 │ │ │ ├── 14_beforeExplod.mp3 │ │ │ ├── 14_bombExplod.mp3 │ │ │ ├── 14_clickTheBomb.mp3 │ │ │ ├── 16_dogbark01.mp3 │ │ │ ├── 16_dogbark02.mp3 │ │ │ ├── 18_jumpMix.mp3 │ │ │ ├── 18_water.mp3 │ │ │ ├── 19_scream.mp3 │ │ │ ├── 19_slap.mp3 │ │ │ ├── 20_clickAns.mp3 │ │ │ ├── 20_deal.mp3 │ │ │ ├── 21_down.mp3 │ │ │ ├── 21_up.mp3 │ │ │ ├── 22_failToJump.mp3 │ │ │ ├── 22_fly.mp3 │ │ │ ├── 22_inTheOcean.mp3 │ │ │ ├── 22_runStep.mp3 │ │ │ ├── 22_skid.mp3 │ │ │ ├── 23_drip.mp3 │ │ │ ├── 23_snore.mp3 │ │ │ ├── 24_fart01.mp3 │ │ │ ├── 24_fart02.mp3 │ │ │ ├── 24_fart03.mp3 │ │ │ ├── WeaponBlink.mp3 │ │ │ ├── cageDrop.mp3 │ │ │ ├── chain_drop.mp3 │ │ │ ├── click.mp3 │ │ │ ├── drop_title_1.mp3 │ │ │ ├── drop_title_2.mp3 │ │ │ ├── drop_title_3.mp3 │ │ │ ├── failDrop.mp3 │ │ │ ├── failShout.mp3 │ │ │ ├── getGradeS.mp3 │ │ │ ├── good.mp3 │ │ │ ├── great.mp3 │ │ │ ├── hiScore01.mp3 │ │ │ ├── hiScore02.mp3 │ │ │ ├── instantFail01.mp3 │ │ │ ├── instantFail02.mp3 │ │ │ ├── instantFail03.mp3 │ │ │ ├── instantFail04.mp3 │ │ │ ├── new_pop.mp3 │ │ │ ├── normalScore.mp3 │ │ │ ├── okay.mp3 │ │ │ ├── perfect.mp3 │ │ │ ├── ready_go.mp3 │ │ │ ├── scoreGrade_a.mp3 │ │ │ ├── scoreGrade_b.mp3 │ │ │ ├── scoreGrade_c.mp3 │ │ │ ├── scoreGrade_d.mp3 │ │ │ ├── scoreGrade_e.mp3 │ │ │ ├── scoreGrade_f.mp3 │ │ │ ├── scoreGrade_s.mp3 │ │ │ ├── stage_ready.mp3 │ │ │ ├── tap.mp3 │ │ │ └── whistle.mp3 │ ├── RootViewController │ │ ├── WNXLaunchAnimationViewController.h │ │ ├── WNXLaunchAnimationViewController.m │ │ ├── WNXLaunchAnimationViewController.xib │ │ ├── WNXRootViewController.h │ │ └── WNXRootViewController.m │ ├── Stage │ │ ├── Stage01 │ │ │ ├── Controller │ │ │ │ ├── WNXStage01ViewController.h │ │ │ │ └── WNXStage01ViewController.m │ │ │ └── View │ │ │ │ ├── WNXFeatherView.h │ │ │ │ ├── WNXFeatherView.m │ │ │ │ ├── WNXFootView.h │ │ │ │ └── WNXFootView.m │ │ ├── Stage02 │ │ │ ├── Controller │ │ │ │ ├── WNXStage02ViewController.h │ │ │ │ └── WNXStage02ViewController.m │ │ │ └── View │ │ │ │ ├── WNXCountTimeView.h │ │ │ │ ├── WNXCountTimeView.m │ │ │ │ ├── WNXCountTimeView.xib │ │ │ │ ├── WNXGuessFingerView.h │ │ │ │ └── WNXGuessFingerView.m │ │ ├── Stage03 │ │ │ ├── WNXStage03HeaderView.h │ │ │ ├── WNXStage03HeaderView.m │ │ │ ├── WNXStage03ViewController.h │ │ │ └── WNXStage03ViewController.m │ │ ├── Stage04 │ │ │ ├── WNXStage04View.h │ │ │ ├── WNXStage04View.m │ │ │ ├── WNXStage04ViewController.h │ │ │ ├── WNXStage04ViewController.m │ │ │ ├── WNXStateView.h │ │ │ ├── WNXStateView.m │ │ │ └── WNXStateView.xib │ │ ├── Stage05 │ │ │ ├── WNXColumnIceView.h │ │ │ ├── WNXColumnIceView.m │ │ │ ├── WNXColumnIceView.xib │ │ │ ├── WNXIceView.h │ │ │ ├── WNXIceView.m │ │ │ ├── WNXStage05ViewController.h │ │ │ └── WNXStage05ViewController.m │ │ ├── Stage06 │ │ │ ├── WNXStage06PeolpeView.h │ │ │ ├── WNXStage06PeolpeView.m │ │ │ ├── WNXStage06PeolpeView.xib │ │ │ ├── WNXStage06ViewController.h │ │ │ └── WNXStage06ViewController.m │ │ ├── Stage07 │ │ │ ├── WNXBreakGlassView.h │ │ │ ├── WNXBreakGlassView.m │ │ │ ├── WNXBreakGlassView.xib │ │ │ ├── WNXStage07ErrorView.h │ │ │ ├── WNXStage07ErrorView.m │ │ │ ├── WNXStage07ErrorView.xib │ │ │ ├── WNXStage07View.h │ │ │ ├── WNXStage07View.m │ │ │ ├── WNXStage07ViewController.h │ │ │ └── WNXStage07ViewController.m │ │ ├── Stage08 │ │ │ ├── WNXStage08PeopleView.h │ │ │ ├── WNXStage08PeopleView.m │ │ │ ├── WNXStage08PeopleView.xib │ │ │ ├── WNXStage08ViewController.h │ │ │ └── WNXStage08ViewController.m │ │ ├── Stage09 │ │ │ ├── WNXBobmView.h │ │ │ ├── WNXBobmView.m │ │ │ ├── WNXBobmView.xib │ │ │ ├── WNXStage09BobmView.h │ │ │ ├── WNXStage09BobmView.m │ │ │ ├── WNXStage09ResultView.h │ │ │ ├── WNXStage09ResultView.m │ │ │ ├── WNXStage09ResultView.xib │ │ │ ├── WNXStage09ViewController.h │ │ │ └── WNXStage09ViewController.m │ │ ├── Stage10 │ │ │ ├── WNXStage10BottomNumView.h │ │ │ ├── WNXStage10BottomNumView.m │ │ │ ├── WNXStage10View.h │ │ │ ├── WNXStage10View.m │ │ │ ├── WNXStage10ViewController.h │ │ │ └── WNXStage10ViewController.m │ │ ├── Stage11 │ │ │ ├── WNXStage11BottomNumView.h │ │ │ ├── WNXStage11BottomNumView.m │ │ │ ├── WNXStage11View.h │ │ │ ├── WNXStage11View.m │ │ │ ├── WNXStage11ViewController.h │ │ │ ├── WNXStage11ViewController.m │ │ │ ├── WNXSubjectView.h │ │ │ └── WNXSubjectView.m │ │ ├── Stage12 │ │ │ ├── WNXDropEggView.h │ │ │ ├── WNXDropEggView.m │ │ │ ├── WNXStage12BottomView.h │ │ │ ├── WNXStage12BottomView.m │ │ │ ├── WNXStage12EggView.h │ │ │ ├── WNXStage12EggView.m │ │ │ ├── WNXStage12ViewController.h │ │ │ ├── WNXStage12ViewController.m │ │ │ ├── WNXState12ResultView.h │ │ │ └── WNXState12ResultView.m │ │ ├── Stage13 │ │ │ ├── WNXStage13BottomView.h │ │ │ ├── WNXStage13BottomView.m │ │ │ ├── WNXStage13GuessView.h │ │ │ ├── WNXStage13GuessView.m │ │ │ ├── WNXStage13ViewController.h │ │ │ └── WNXStage13ViewController.m │ │ ├── Stage14 │ │ │ ├── WNXStage14DogView.h │ │ │ ├── WNXStage14DogView.m │ │ │ ├── WNXStage14DogView.xib │ │ │ ├── WNXStage14LineView.h │ │ │ ├── WNXStage14LineView.m │ │ │ ├── WNXStage14LineView.xib │ │ │ ├── WNXStage14ViewController.h │ │ │ └── WNXStage14ViewController.m │ │ ├── Stage15 │ │ │ ├── WNXStage15RowView.h │ │ │ ├── WNXStage15RowView.m │ │ │ ├── WNXStage15RowView.xib │ │ │ ├── WNXStage15View.h │ │ │ ├── WNXStage15View.m │ │ │ ├── WNXStage15ViewController.h │ │ │ └── WNXStage15ViewController.m │ │ ├── Stage16 │ │ │ ├── WNXStage16PeopleView.h │ │ │ ├── WNXStage16PeopleView.m │ │ │ ├── WNXStage16PeopleView.xib │ │ │ ├── WNXStage16ViewController.h │ │ │ └── WNXStage16ViewController.m │ │ ├── Stage17 │ │ │ ├── WNXNoseView.h │ │ │ ├── WNXNoseView.m │ │ │ ├── WNXNoseView.xib │ │ │ ├── WNXPowerView.h │ │ │ ├── WNXPowerView.m │ │ │ ├── WNXPowerView.xib │ │ │ ├── WNXStage17ViewController.h │ │ │ └── WNXStage17ViewController.m │ │ ├── Stage18 │ │ │ ├── WNXPokerView.h │ │ │ ├── WNXPokerView.m │ │ │ ├── WNXPokerView.xib │ │ │ ├── WNXStage18PokerView.h │ │ │ ├── WNXStage18PokerView.m │ │ │ ├── WNXStage18PokerView.xib │ │ │ ├── WNXStage18ViewController.h │ │ │ └── WNXStage18ViewController.m │ │ ├── Stage19 │ │ │ ├── WNXFishView.h │ │ │ ├── WNXFishView.m │ │ │ ├── WNXFishView.xib │ │ │ ├── WNXStage19FishView.h │ │ │ ├── WNXStage19FishView.m │ │ │ ├── WNXStage19ViewController.h │ │ │ └── WNXStage19ViewController.m │ │ ├── Stage20 │ │ │ ├── WNXDiceView.h │ │ │ ├── WNXDiceView.m │ │ │ ├── WNXDiceView.xib │ │ │ ├── WNXStage20DiceView.h │ │ │ ├── WNXStage20DiceView.m │ │ │ ├── WNXStage20ViewController.h │ │ │ └── WNXStage20ViewController.m │ │ ├── Stage21 │ │ │ ├── WNXFractionView.h │ │ │ ├── WNXFractionView.m │ │ │ ├── WNXStage21FractionView.h │ │ │ ├── WNXStage21FractionView.m │ │ │ ├── WNXStage21ViewController.h │ │ │ └── WNXStage21ViewController.m │ │ ├── Stage22 │ │ │ ├── WNXStage22PeopleView.h │ │ │ ├── WNXStage22PeopleView.m │ │ │ ├── WNXStage22ViewController.h │ │ │ └── WNXStage22ViewController.m │ │ ├── Stage23 │ │ │ ├── WNXBusView.h │ │ │ ├── WNXBusView.m │ │ │ ├── WNXBusView.xib │ │ │ ├── WNXStage23PeopleView.h │ │ │ ├── WNXStage23PeopleView.m │ │ │ ├── WNXStage23ViewController.h │ │ │ └── WNXStage23ViewController.m │ │ └── Stage24 │ │ │ ├── WNXCockroachView.h │ │ │ ├── WNXCockroachView.m │ │ │ ├── WNXCockroachView.xib │ │ │ ├── WNXStage24View.h │ │ │ ├── WNXStage24View.m │ │ │ ├── WNXStage24ViewController.h │ │ │ └── WNXStage24ViewController.m │ └── View │ │ ├── PrepareView │ │ ├── WNXPrepareScoreView.h │ │ └── WNXPrepareScoreView.m │ │ └── SelectStageView │ │ ├── WNXStageListView.h │ │ ├── WNXStageListView.m │ │ ├── WNXStageView.h │ │ ├── WNXStageView.m │ │ └── WNXStageView.xib ├── Info.plist ├── PrefixHeader.pch └── main.m ├── HardestTests ├── HardestTests.m └── Info.plist ├── HardestUITests ├── HardestUITests.m └── Info.plist └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/.gitignore -------------------------------------------------------------------------------- /Hardest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Hardest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Hardest.xcodeproj/xcuserdata/sfbest.xcuserdatad/xcschemes/Hardest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest.xcodeproj/xcuserdata/sfbest.xcuserdatad/xcschemes/Hardest.xcscheme -------------------------------------------------------------------------------- /Hardest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/AppDelegate.h -------------------------------------------------------------------------------- /Hardest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/AppDelegate.m -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon29x29.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon57x57.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon57x57@2x.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/LaunchAnimation/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/LaunchAnimation/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/LaunchAnimation/blink-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/LaunchAnimation/blink-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/LaunchAnimation/text-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/LaunchAnimation/text-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/1111.imageset/1111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/1111.imageset/1111.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/1111.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/1111.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/bt_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/bt_back.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/bt_back.imageset/bt_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/bt_back.imageset/bt_back.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/bt_blue-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/bt_blue-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/bt_green.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/bt_green.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/bt_green.imageset/bt_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/bt_green.imageset/bt_green.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_bg.imageset/fail_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_bg.imageset/fail_bg.jpg -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_boy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_boy.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_boy.imageset/fail_boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_boy.imageset/fail_boy.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_home.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_home.imageset/fail_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_home.imageset/fail_home.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_kanban.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_kanban.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_kanban.imageset/fail_kanban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_kanban.imageset/fail_kanban.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_prison.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_prison.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_prison.imageset/fail_prison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_prison.imageset/fail_prison.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_retry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_retry.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_retry.imageset/fail_retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_retry.imageset/fail_retry.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_shadow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_shadow.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_shadow.imageset/fail_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_shadow.imageset/fail_shadow.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_word.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_word.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/fail_word.imageset/fail_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/fail_word.imageset/fail_word.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/guide/01-1-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/guide/01-1-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/guide/01-2-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/guide/01-2-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/guide/02-1-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/guide/02-1-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/guide/02-2-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/guide/02-2-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/guide/02-4-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/guide/02-4-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/guide/02-5-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/guide/02-5-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/guide/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/guide/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/loading_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/loading_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/loading_bg.imageset/loading_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/loading_bg.imageset/loading_bg.jpg -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/mainBG/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/mainBG/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/mainBG/home_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/mainBG/home_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/mainBG/home_bg.imageset/home_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/mainBG/home_bg.imageset/home_bg.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_bg.imageset/select_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_bg.imageset/select_bg.jpg -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_digital.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_digital.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_easy_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_easy_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_hard_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_hard_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_insane_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_insane_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_lock_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_lock_left.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_new.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_new.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_new.imageset/select_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_new.imageset/select_new.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_normal_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_normal_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_shadow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_shadow.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_stage_a.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_stage_a.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_stage_b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_stage_b.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_stage_c.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_stage_c.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_stage_d.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_stage_d.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_stage_e.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_stage_e.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_stage_f.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_stage_f.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_stage_new.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_stage_new.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_stage_s.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_stage_s.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_stage_s01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_stage_s01.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_stage_s02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_stage_s02.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/select_stage_s03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/select_stage_s03.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/setting_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/setting_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/MainImage/setting_bg.imageset/setting_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/MainImage/setting_bg.imageset/setting_bg.jpg -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Other/00_bad-iphone4.imageset/00_bad-iphone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Other/00_bad-iphone4.imageset/00_bad-iphone4.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Other/00_bad-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Other/00_bad-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Other/00_circle-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Other/00_circle-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Other/00_cross-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Other/00_cross-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Other/00_good-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Other/00_good-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Other/00_great-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Other/00_great-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Other/00_okay-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Other/00_okay-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Other/00_perfect-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Other/00_perfect-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Other/00_perfect01-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Other/00_perfect01-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Other/00_perfect02-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Other/00_perfect02-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Other/00_perfect03-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Other/00_perfect03-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Other/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Other/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/cureent_score.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/cureent_score.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/cureent_score.imageset/cureent_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/cureent_score.imageset/cureent_score.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/high_score.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/high_score.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/high_score.imageset/high_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/high_score.imageset/high_score.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/new_record.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/new_record.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/new_record.imageset/new_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/new_record.imageset/new_record.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/other_score.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/other_score.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/other_score.imageset/other_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/other_score.imageset/other_score.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/rank_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/rank_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/rank_bg.imageset/rank_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/rank_bg.imageset/rank_bg.jpg -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/rank_home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/rank_home.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/rank_home.imageset/rank_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/rank_home.imageset/rank_home.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/rank_retry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/rank_retry.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/rank_retry.imageset/rank_retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/rank_retry.imageset/rank_retry.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/scene_light01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/scene_light01.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/scene_light01.imageset/scene_light01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/scene_light01.imageset/scene_light01.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/scene_light02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/scene_light02.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/scene_light02.imageset/scene_light02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/scene_light02.imageset/scene_light02.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/scene_light03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/scene_light03.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/scene_light03.imageset/scene_light03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/scene_light03.imageset/scene_light03.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/scene_new.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/scene_new.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/scene_new.imageset/scene_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/scene_new.imageset/scene_new.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_a.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_a.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_a.imageset/score_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_a.imageset/score_a.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_b.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_b.imageset/score_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_b.imageset/score_b.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_border.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_border.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_border.imageset/score_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_border.imageset/score_border.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_c.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_c.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_c.imageset/score_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_c.imageset/score_c.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_d.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_d.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_d.imageset/score_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_d.imageset/score_d.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_e.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_e.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_e.imageset/score_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_e.imageset/score_e.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_f.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_f.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_f.imageset/score_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_f.imageset/score_f.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_hint.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_hint.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_hint.imageset/score_hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_hint.imageset/score_hint.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_s.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_s.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/OverGame/score_s.imageset/score_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/OverGame/score_s.imageset/score_s.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad01.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad01.imageset/ad01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad01.imageset/ad01.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad02.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad02.imageset/ad02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad02.imageset/ad02.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad03.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad03.imageset/ad03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad03.imageset/ad03.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad04.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad04.imageset/ad04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad04.imageset/ad04.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad1.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad1.imageset/ad1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad1.imageset/ad1.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad2.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad2.imageset/ad2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad2.imageset/ad2.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad3.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/ad3.imageset/ad3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/ad3.imageset/ad3.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/bt_download-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/bt_download-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/bt_home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/bt_home.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/bt_home.imageset/bt_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/bt_home.imageset/bt_home.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/bt_resume.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/bt_resume.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/bt_resume.imageset/bt_resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/bt_resume.imageset/bt_resume.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/bt_setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/bt_setting.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/bt_setting.imageset/bt_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/bt_setting.imageset/bt_setting.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/page_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/page_left.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/page_left.imageset/page_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/page_left.imageset/page_left.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/page_right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/page_right.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/page_right.imageset/page_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/page_right.imageset/page_right.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/pagedot01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/pagedot01.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/pagedot01.imageset/pagedot01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/pagedot01.imageset/pagedot01.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/pagedot02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/pagedot02.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/pagedot02.imageset/pagedot02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/pagedot02.imageset/pagedot02.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/pause_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/pause_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Pause/pause_bg.imageset/pause_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Pause/pause_bg.imageset/pause_bg.jpg -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/go.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/go.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/go.imageset/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/go.imageset/go.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ing_pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ing_pause.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ing_pause.imageset/ing_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ing_pause.imageset/ing_pause.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ing_retry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ing_retry.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ing_retry.imageset/ing_retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ing_retry.imageset/ing_retry.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ing_word.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ing_word.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ing_word.imageset/ing_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ing_word.imageset/ing_word.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready.imageset/ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready.imageset/ready.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready_btplay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready_btplay.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready_btplay.imageset/ready_btplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready_btplay.imageset/ready_btplay.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready_intro.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready_intro.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready_intro.imageset/ready_intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready_intro.imageset/ready_intro.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready_loading.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready_loading.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready_loading.imageset/ready_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready_loading.imageset/ready_loading.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready_play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready_play.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready_play.imageset/ready_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready_play.imageset/ready_play.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready_score.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready_score.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready_score.imageset/ready_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready_score.imageset/ready_score.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Prepare/ready_score_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Prepare/ready_score_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/01-bigfeather.imageset/01-bigfeather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/01-bigfeather.imageset/01-bigfeather.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/01-bigfeather.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/01-bigfeather.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/01-btfeather.imageset/01-btfeather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/01-btfeather.imageset/01-btfeather.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/01-btfeather.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/01-btfeather.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/01-feet01.imageset/01-feet01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/01-feet01.imageset/01-feet01.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/01-feet01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/01-feet01.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/01-feet02.imageset/01-feet02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/01-feet02.imageset/01-feet02.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/01-feet02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/01-feet02.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/01-feet03.imageset/01-feet03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/01-feet03.imageset/01-feet03.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/01-feet03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/01-feet03.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/01_miss.imageset/01_miss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/01_miss.imageset/01_miss.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/01_miss.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/01_miss.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/01/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/01/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/02/09_blue-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/02/09_blue-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/02/09_draw-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/02/09_draw-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/02/09_hand01-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/02/09_hand01-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/02/09_hand02-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/02/09_hand02-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/02/09_hand03-iphone4.imageset/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/02/09_hand03-iphone4.imageset/.DS_Store -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/02/09_hand03-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/02/09_hand03-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/02/09_red-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/02/09_red-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/02/09_word02-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/02/09_word02-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/02/09_word03-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/02/09_word03-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/02/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/02/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/03/23_Barrow-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/03/23_Barrow-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/03/23_Rarrow-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/03/23_Rarrow-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/03/23_bg-iphone4.imageset/23_bg-iphone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/03/23_bg-iphone4.imageset/23_bg-iphone4.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/03/23_bg-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/03/23_bg-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/03/23_bticon-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/03/23_bticon-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/03/23_danger-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/03/23_danger-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/03/23_snivel-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/03/23_snivel-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/03/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/03/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/04/05_Rfoot-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/04/05_Rfoot-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/04/05_Yfoot-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/04/05_Yfoot-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/04/05_bg-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/04/05_bg-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/04/05_floor-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/04/05_floor-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/04/05_hold-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/04/05_hold-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/04/05_stair-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/04/05_stair-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/04/05_walk01-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/04/05_walk01-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/04/05_walk02-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/04/05_walk02-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/04/05_walk03-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/04/05_walk03-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/04/05_walk04-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/04/05_walk04-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/04/05_water-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/04/05_water-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/04/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/04/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/05/03_button-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/05/03_button-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/05/03_cones-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/05/03_cones-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/05/03_ice01-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/05/03_ice01-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/05/03_ice02-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/05/03_ice02-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/05/03_ice03-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/05/03_ice03-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/05/03_ice04-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/05/03_ice04-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/05/03_ice05-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/05/03_ice05-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/05/03_ice06-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/05/03_ice06-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/05/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/05/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/06/19_bg-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/06/19_bg-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/06/19_done-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/06/19_done-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/06/19_hand-iphone4-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/06/19_hand-iphone4-1.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/06/19_hand-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/06/19_hand-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/06/19_man-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/06/19_man-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/06/19_slap-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/06/19_slap-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/06/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/06/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/07/004_gun-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/07/004_gun-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/07/004_holes-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/07/004_holes-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/07/04_cup01-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/07/04_cup01-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/07/04_cup02-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/07/04_cup02-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/07/04_cup03-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/07/04_cup03-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/07/04_light-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/07/04_light-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/07/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/07/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/08/02_camera-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/08/02_camera-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/08/02_girl01-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/08/02_girl01-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/08/02_girl02-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/08/02_girl02-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/08/02_girl03-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/08/02_girl03-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/08/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/08/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/09/14_bomb-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/09/14_bomb-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/09/14_fail-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/09/14_fail-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/09/14_line-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/09/14_line-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/09/AAAA.imageset/AAAA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/09/AAAA.imageset/AAAA.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/09/AAAA.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/09/AAAA.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/09/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/09/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/10/08_bg-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/10/08_bg-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/10/08_left-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/10/08_left-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/10/08_right-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/10/08_right-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/10/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/10/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/13_bg-iphone4.imageset/13_bg-iphone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/13_bg-iphone4.imageset/13_bg-iphone4.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/13_bg-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/13_bg-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/13_equal-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/13_equal-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/13_hand-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/13_hand-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/13_line-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/13_line-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/13_plus-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/13_plus-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_0.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_0.imageset/stage13_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_0.imageset/stage13_0.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_1.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_1.imageset/stage13_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_1.imageset/stage13_1.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_2.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_2.imageset/stage13_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_2.imageset/stage13_2.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_3.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_3.imageset/stage13_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_3.imageset/stage13_3.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_4.imageset/stage13_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_4.imageset/stage13_4.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_5.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_5.imageset/stage13_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_5.imageset/stage13_5.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_6.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_6.imageset/stage13_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_6.imageset/stage13_6.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_7.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_7.imageset/stage13_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_7.imageset/stage13_7.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_8.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_8.imageset/stage13_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_8.imageset/stage13_8.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_9.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/11/stage13_9.imageset/stage13_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/11/stage13_9.imageset/stage13_9.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/12/01_catch-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/12/01_catch-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/12/01_egg-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/12/01_egg-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/12/01_fail-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/12/01_fail-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/12/01_line-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/12/01_line-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/12/01_normal-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/12/01_normal-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/12/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/12/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/13/11_Bbt-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/13/11_Bbt-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/13/11_Rbt-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/13/11_Rbt-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/13/11_Ybt-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/13/11_Ybt-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/13/11_bg-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/13/11_bg-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/13/11_boy-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/13/11_boy-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/13/11_dad-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/13/11_dad-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/13/11_hand-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/13/11_hand-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/13/11_tick-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/13/11_tick-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/13/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/13/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/14/16_bg-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/14/16_bg-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/14/16_bone-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/14/16_bone-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/14/16_dog-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/14/16_dog-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/14/16_phone-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/14/16_phone-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/14/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/14/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_Bwood-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_Bwood-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_Rwood-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_Rwood-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_Ywood-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_Ywood-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_duck01-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_duck01-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_duck02-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_duck02-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_flag-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_flag-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_hold-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_hold-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_jump-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_jump-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_jumpL-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_jumpL-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_jumpR-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_jumpR-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_stone-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_stone-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_water1-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_water1-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/18_water2-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/18_water2-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/15/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/15/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/16/21_bg-iphone4.imageset/21_bg-iphone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/16/21_bg-iphone4.imageset/21_bg-iphone4.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/16/21_bg-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/16/21_bg-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/16/21_blog-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/16/21_blog-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/16/21_down-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/16/21_down-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/16/21_hand-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/16/21_hand-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/16/21_up-iphone4.imageset/21_up-iphone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/16/21_up-iphone4.imageset/21_up-iphone4.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/16/21_up-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/16/21_up-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/16/21_upman-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/16/21_upman-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/16/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/16/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/17/15_bg-iphone4.imageset/15_bg-iphone4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/17/15_bg-iphone4.imageset/15_bg-iphone4.jpg -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/17/15_bg-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/17/15_bg-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/17/15_button-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/17/15_button-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/17/15_hand-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/17/15_hand-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/17/15_nose01-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/17/15_nose01-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/17/15_nose02-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/17/15_nose02-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/17/15_nose03-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/17/15_nose03-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/17/15_nose04-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/17/15_nose04-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/17/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/17/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/18/20_Bheart-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/18/20_Bheart-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/18/20_Rheart-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/18/20_Rheart-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/18/20_card-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/18/20_card-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/18/20_same-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/18/20_same-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/18/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/18/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/19/06_bg-iphone4.imageset/06_bg-iphone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/19/06_bg-iphone4.imageset/06_bg-iphone4.png -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/19/06_bg-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/19/06_bg-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/19/06_press-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/19/06_press-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/19/06_pull-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/19/06_pull-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/19/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/19/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/20/10_dice01-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/20/10_dice01-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/20/10_dice02-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/20/10_dice02-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/20/10_dice03-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/20/10_dice03-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/20/10_dice04-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/20/10_dice04-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/20/10_dice05-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/20/10_dice05-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/20/10_dice06-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/20/10_dice06-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/20/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/20/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/21/17_bigger-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/21/17_bigger-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/21/17_line-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/21/17_line-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/21/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/21/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/22/24_fart-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/22/24_fart-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/22/24_fart01-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/22/24_fart01-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/22/24_shadow-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/22/24_shadow-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/22/24_watch-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/22/24_watch-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/22/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/22/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/23/12_Bboy-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/23/12_Bboy-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/23/12_Rgirl-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/23/12_Rgirl-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/23/12_Yboy-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/23/12_Yboy-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/23/12_bg-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/23/12_bg-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/23/12_bus-iphone4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/23/12_bus-iphone4.imageset/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/23/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/23/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/24/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/24/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/Stage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/Stage/Contents.json -------------------------------------------------------------------------------- /Hardest/Assets.xcassets/StageViewImage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Assets.xcassets/StageViewImage/Contents.json -------------------------------------------------------------------------------- /Hardest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXCountDownLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXCountDownLabel.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXCountDownLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXCountDownLabel.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXFailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXFailView.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXFailView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXFailView.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXFailView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXFailView.xib -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXFullBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXFullBackgroundView.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXFullBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXFullBackgroundView.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXHighScroeTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXHighScroeTextView.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXHighScroeTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXHighScroeTextView.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXReadyGoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXReadyGoView.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXReadyGoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXReadyGoView.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXResultScoreView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXResultScoreView.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXResultScoreView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXResultScoreView.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXScoreboardCountView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXScoreboardCountView.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXScoreboardCountView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXScoreboardCountView.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXScoreboardCountView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXScoreboardCountView.xib -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXStrokeLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXStrokeLabel.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXStrokeLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXStrokeLabel.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXTimeCountView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXTimeCountView.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXTimeCountView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXTimeCountView.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseView/WNXTimeCountView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseView/WNXTimeCountView.xib -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXBackViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXBackViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXBackViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXBackViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXBaseGameViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXBaseGameViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXBaseGameViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXBaseGameViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXFailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXFailViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXFailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXFailViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXFailViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXFailViewController.xib -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXPauseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXPauseViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXPauseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXPauseViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXPauseViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXPauseViewController.xib -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXRYBViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXRYBViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXRYBViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXRYBViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXResultViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXResultViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXResultViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXResultViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXResultViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXResultViewController.xib -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXTwoButtonViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXTwoButtonViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/BaseClass/BaseViewController/WNXTwoButtonViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/BaseClass/BaseViewController/WNXTwoButtonViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Categories/UIApplication+WNXLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Categories/UIApplication+WNXLoad.h -------------------------------------------------------------------------------- /Hardest/Classes/Categories/UIApplication+WNXLoad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Categories/UIApplication+WNXLoad.m -------------------------------------------------------------------------------- /Hardest/Classes/Categories/UIColor+WNXColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Categories/UIColor+WNXColor.h -------------------------------------------------------------------------------- /Hardest/Classes/Categories/UIColor+WNXColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Categories/UIColor+WNXColor.m -------------------------------------------------------------------------------- /Hardest/Classes/Categories/UIView+WNXImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Categories/UIView+WNXImage.h -------------------------------------------------------------------------------- /Hardest/Classes/Categories/UIView+WNXImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Categories/UIView+WNXImage.m -------------------------------------------------------------------------------- /Hardest/Classes/CommonTools/SoundNamesHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/CommonTools/SoundNamesHeader.h -------------------------------------------------------------------------------- /Hardest/Classes/CommonTools/WNXGameControllerViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/CommonTools/WNXGameControllerViewManager.h -------------------------------------------------------------------------------- /Hardest/Classes/CommonTools/WNXGameControllerViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/CommonTools/WNXGameControllerViewManager.m -------------------------------------------------------------------------------- /Hardest/Classes/CommonTools/WNXSoundToolManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/CommonTools/WNXSoundToolManager.h -------------------------------------------------------------------------------- /Hardest/Classes/CommonTools/WNXStageInfoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/CommonTools/WNXStageInfoManager.h -------------------------------------------------------------------------------- /Hardest/Classes/CommonTools/WNXStageInfoManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/CommonTools/WNXStageInfoManager.m -------------------------------------------------------------------------------- /Hardest/Classes/CommonTools/WXNSoundToolManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/CommonTools/WXNSoundToolManager.m -------------------------------------------------------------------------------- /Hardest/Classes/Controller/WNXPrepareViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Controller/WNXPrepareViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Controller/WNXPrepareViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Controller/WNXPrepareViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Controller/WNXRareViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Controller/WNXRareViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Controller/WNXRareViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Controller/WNXRareViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Controller/WNXSelectStageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Controller/WNXSelectStageViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Controller/WNXSelectStageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Controller/WNXSelectStageViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Controller/WNXSettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Controller/WNXSettingViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Controller/WNXSettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Controller/WNXSettingViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Model/WNXStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Model/WNXStage.h -------------------------------------------------------------------------------- /Hardest/Classes/Model/WNXStage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Model/WNXStage.m -------------------------------------------------------------------------------- /Hardest/Classes/Model/WNXStageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Model/WNXStageInfo.h -------------------------------------------------------------------------------- /Hardest/Classes/Model/WNXStageInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Model/WNXStageInfo.m -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Font/Transformers Movie 变形金刚字体.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Font/Transformers Movie 变形金刚字体.ttf -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Font/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Font/arial.ttf -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Images/Default.png -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Images/Default@2x.png -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Plist/home.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Plist/home.plist -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Plist/stages.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Plist/stages.plist -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/bg_music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/bg_music.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/000-click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/000-click.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/01_eggHit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/01_eggHit.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/01_yeah.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/01_yeah.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/02_ok.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/02_ok.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/02_takePhoto.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/02_takePhoto.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/03_arrival.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/03_arrival.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/03_fall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/03_fall.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/04_gun.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/04_gun.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/04_reload.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/04_reload.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/05_toiletflush.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/05_toiletflush.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/06_catchFish.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/06_catchFish.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/06_reelin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/06_reelin.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/08_ansCorrect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/08_ansCorrect.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/08_jackpotStop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/08_jackpotStop.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/08_rolling.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/08_rolling.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/08_rolling2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/08_rolling2.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/09_right.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/09_right.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/09_throw.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/09_throw.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/09_wrong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/09_wrong.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/10_rollDice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/10_rollDice.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/12_busPassBy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/12_busPassBy.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/13_chalkboard.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/13_chalkboard.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/14_beforeExplod.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/14_beforeExplod.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/14_bombExplod.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/14_bombExplod.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/14_clickTheBomb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/14_clickTheBomb.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/16_dogbark01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/16_dogbark01.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/16_dogbark02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/16_dogbark02.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/18_jumpMix.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/18_jumpMix.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/18_water.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/18_water.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/19_scream.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/19_scream.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/19_slap.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/19_slap.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/20_clickAns.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/20_clickAns.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/20_deal.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/20_deal.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/21_down.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/21_down.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/21_up.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/21_up.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/22_failToJump.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/22_failToJump.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/22_fly.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/22_fly.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/22_inTheOcean.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/22_inTheOcean.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/22_runStep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/22_runStep.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/22_skid.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/22_skid.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/23_drip.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/23_drip.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/23_snore.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/23_snore.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/24_fart01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/24_fart01.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/24_fart02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/24_fart02.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/24_fart03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/24_fart03.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/WeaponBlink.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/WeaponBlink.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/cageDrop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/cageDrop.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/chain_drop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/chain_drop.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/click.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/drop_title_1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/drop_title_1.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/drop_title_2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/drop_title_2.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/drop_title_3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/drop_title_3.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/failDrop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/failDrop.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/failShout.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/failShout.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/getGradeS.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/getGradeS.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/good.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/good.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/great.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/great.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/hiScore01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/hiScore01.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/hiScore02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/hiScore02.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/instantFail01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/instantFail01.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/instantFail02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/instantFail02.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/instantFail03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/instantFail03.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/instantFail04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/instantFail04.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/new_pop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/new_pop.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/normalScore.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/normalScore.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/okay.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/okay.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/perfect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/perfect.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/ready_go.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/ready_go.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_a.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_a.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_b.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_b.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_c.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_c.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_d.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_d.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_e.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_e.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_f.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_f.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_s.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/scoreGrade_s.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/stage_ready.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/stage_ready.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/tap.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/tap.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/Resources/Sound/sound.bundle/whistle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Resources/Sound/sound.bundle/whistle.mp3 -------------------------------------------------------------------------------- /Hardest/Classes/RootViewController/WNXLaunchAnimationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/RootViewController/WNXLaunchAnimationViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/RootViewController/WNXLaunchAnimationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/RootViewController/WNXLaunchAnimationViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/RootViewController/WNXLaunchAnimationViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/RootViewController/WNXLaunchAnimationViewController.xib -------------------------------------------------------------------------------- /Hardest/Classes/RootViewController/WNXRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/RootViewController/WNXRootViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/RootViewController/WNXRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/RootViewController/WNXRootViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage01/Controller/WNXStage01ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage01/Controller/WNXStage01ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage01/Controller/WNXStage01ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage01/Controller/WNXStage01ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage01/View/WNXFeatherView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage01/View/WNXFeatherView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage01/View/WNXFeatherView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage01/View/WNXFeatherView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage01/View/WNXFootView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage01/View/WNXFootView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage01/View/WNXFootView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage01/View/WNXFootView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage02/Controller/WNXStage02ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage02/Controller/WNXStage02ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage02/Controller/WNXStage02ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage02/Controller/WNXStage02ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage02/View/WNXCountTimeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage02/View/WNXCountTimeView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage02/View/WNXCountTimeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage02/View/WNXCountTimeView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage02/View/WNXCountTimeView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage02/View/WNXCountTimeView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage02/View/WNXGuessFingerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage02/View/WNXGuessFingerView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage02/View/WNXGuessFingerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage02/View/WNXGuessFingerView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage03/WNXStage03HeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage03/WNXStage03HeaderView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage03/WNXStage03HeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage03/WNXStage03HeaderView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage03/WNXStage03ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage03/WNXStage03ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage03/WNXStage03ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage03/WNXStage03ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage04/WNXStage04View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage04/WNXStage04View.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage04/WNXStage04View.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage04/WNXStage04View.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage04/WNXStage04ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage04/WNXStage04ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage04/WNXStage04ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage04/WNXStage04ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage04/WNXStateView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage04/WNXStateView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage04/WNXStateView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage04/WNXStateView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage04/WNXStateView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage04/WNXStateView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage05/WNXColumnIceView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage05/WNXColumnIceView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage05/WNXColumnIceView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage05/WNXColumnIceView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage05/WNXColumnIceView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage05/WNXColumnIceView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage05/WNXIceView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage05/WNXIceView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage05/WNXIceView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage05/WNXIceView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage05/WNXStage05ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage05/WNXStage05ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage05/WNXStage05ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage05/WNXStage05ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage06/WNXStage06PeolpeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage06/WNXStage06PeolpeView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage06/WNXStage06PeolpeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage06/WNXStage06PeolpeView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage06/WNXStage06PeolpeView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage06/WNXStage06PeolpeView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage06/WNXStage06ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage06/WNXStage06ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage06/WNXStage06ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage06/WNXStage06ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage07/WNXBreakGlassView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage07/WNXBreakGlassView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage07/WNXBreakGlassView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage07/WNXBreakGlassView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage07/WNXBreakGlassView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage07/WNXBreakGlassView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage07/WNXStage07ErrorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage07/WNXStage07ErrorView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage07/WNXStage07ErrorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage07/WNXStage07ErrorView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage07/WNXStage07ErrorView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage07/WNXStage07ErrorView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage07/WNXStage07View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage07/WNXStage07View.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage07/WNXStage07View.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage07/WNXStage07View.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage07/WNXStage07ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage07/WNXStage07ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage07/WNXStage07ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage07/WNXStage07ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage08/WNXStage08PeopleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage08/WNXStage08PeopleView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage08/WNXStage08PeopleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage08/WNXStage08PeopleView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage08/WNXStage08PeopleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage08/WNXStage08PeopleView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage08/WNXStage08ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage08/WNXStage08ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage08/WNXStage08ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage08/WNXStage08ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage09/WNXBobmView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage09/WNXBobmView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage09/WNXBobmView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage09/WNXBobmView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage09/WNXBobmView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage09/WNXBobmView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage09/WNXStage09BobmView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage09/WNXStage09BobmView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage09/WNXStage09BobmView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage09/WNXStage09BobmView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage09/WNXStage09ResultView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage09/WNXStage09ResultView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage09/WNXStage09ResultView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage09/WNXStage09ResultView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage09/WNXStage09ResultView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage09/WNXStage09ResultView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage09/WNXStage09ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage09/WNXStage09ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage09/WNXStage09ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage09/WNXStage09ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage10/WNXStage10BottomNumView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage10/WNXStage10BottomNumView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage10/WNXStage10BottomNumView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage10/WNXStage10BottomNumView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage10/WNXStage10View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage10/WNXStage10View.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage10/WNXStage10View.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage10/WNXStage10View.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage10/WNXStage10ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage10/WNXStage10ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage10/WNXStage10ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage10/WNXStage10ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage11/WNXStage11BottomNumView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage11/WNXStage11BottomNumView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage11/WNXStage11BottomNumView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage11/WNXStage11BottomNumView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage11/WNXStage11View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage11/WNXStage11View.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage11/WNXStage11View.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage11/WNXStage11View.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage11/WNXStage11ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage11/WNXStage11ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage11/WNXStage11ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage11/WNXStage11ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage11/WNXSubjectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage11/WNXSubjectView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage11/WNXSubjectView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage11/WNXSubjectView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage12/WNXDropEggView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage12/WNXDropEggView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage12/WNXDropEggView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage12/WNXDropEggView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage12/WNXStage12BottomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage12/WNXStage12BottomView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage12/WNXStage12BottomView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage12/WNXStage12BottomView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage12/WNXStage12EggView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage12/WNXStage12EggView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage12/WNXStage12EggView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage12/WNXStage12EggView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage12/WNXStage12ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage12/WNXStage12ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage12/WNXStage12ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage12/WNXStage12ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage12/WNXState12ResultView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage12/WNXState12ResultView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage12/WNXState12ResultView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage12/WNXState12ResultView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage13/WNXStage13BottomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage13/WNXStage13BottomView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage13/WNXStage13BottomView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage13/WNXStage13BottomView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage13/WNXStage13GuessView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage13/WNXStage13GuessView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage13/WNXStage13GuessView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage13/WNXStage13GuessView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage13/WNXStage13ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage13/WNXStage13ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage13/WNXStage13ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage13/WNXStage13ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage14/WNXStage14DogView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage14/WNXStage14DogView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage14/WNXStage14DogView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage14/WNXStage14DogView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage14/WNXStage14DogView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage14/WNXStage14DogView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage14/WNXStage14LineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage14/WNXStage14LineView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage14/WNXStage14LineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage14/WNXStage14LineView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage14/WNXStage14LineView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage14/WNXStage14LineView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage14/WNXStage14ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage14/WNXStage14ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage14/WNXStage14ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage14/WNXStage14ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage15/WNXStage15RowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage15/WNXStage15RowView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage15/WNXStage15RowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage15/WNXStage15RowView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage15/WNXStage15RowView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage15/WNXStage15RowView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage15/WNXStage15View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage15/WNXStage15View.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage15/WNXStage15View.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage15/WNXStage15View.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage15/WNXStage15ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage15/WNXStage15ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage15/WNXStage15ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage15/WNXStage15ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage16/WNXStage16PeopleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage16/WNXStage16PeopleView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage16/WNXStage16PeopleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage16/WNXStage16PeopleView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage16/WNXStage16PeopleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage16/WNXStage16PeopleView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage16/WNXStage16ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage16/WNXStage16ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage16/WNXStage16ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage16/WNXStage16ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage17/WNXNoseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage17/WNXNoseView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage17/WNXNoseView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage17/WNXNoseView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage17/WNXNoseView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage17/WNXNoseView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage17/WNXPowerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage17/WNXPowerView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage17/WNXPowerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage17/WNXPowerView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage17/WNXPowerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage17/WNXPowerView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage17/WNXStage17ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage17/WNXStage17ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage17/WNXStage17ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage17/WNXStage17ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage18/WNXPokerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage18/WNXPokerView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage18/WNXPokerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage18/WNXPokerView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage18/WNXPokerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage18/WNXPokerView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage18/WNXStage18PokerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage18/WNXStage18PokerView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage18/WNXStage18PokerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage18/WNXStage18PokerView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage18/WNXStage18PokerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage18/WNXStage18PokerView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage18/WNXStage18ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage18/WNXStage18ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage18/WNXStage18ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage18/WNXStage18ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage19/WNXFishView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage19/WNXFishView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage19/WNXFishView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage19/WNXFishView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage19/WNXFishView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage19/WNXFishView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage19/WNXStage19FishView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage19/WNXStage19FishView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage19/WNXStage19FishView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage19/WNXStage19FishView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage19/WNXStage19ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage19/WNXStage19ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage19/WNXStage19ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage19/WNXStage19ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage20/WNXDiceView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage20/WNXDiceView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage20/WNXDiceView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage20/WNXDiceView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage20/WNXDiceView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage20/WNXDiceView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage20/WNXStage20DiceView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage20/WNXStage20DiceView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage20/WNXStage20DiceView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage20/WNXStage20DiceView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage20/WNXStage20ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage20/WNXStage20ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage20/WNXStage20ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage20/WNXStage20ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage21/WNXFractionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage21/WNXFractionView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage21/WNXFractionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage21/WNXFractionView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage21/WNXStage21FractionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage21/WNXStage21FractionView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage21/WNXStage21FractionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage21/WNXStage21FractionView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage21/WNXStage21ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage21/WNXStage21ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage21/WNXStage21ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage21/WNXStage21ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage22/WNXStage22PeopleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage22/WNXStage22PeopleView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage22/WNXStage22PeopleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage22/WNXStage22PeopleView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage22/WNXStage22ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage22/WNXStage22ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage22/WNXStage22ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage22/WNXStage22ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage23/WNXBusView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage23/WNXBusView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage23/WNXBusView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage23/WNXBusView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage23/WNXBusView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage23/WNXBusView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage23/WNXStage23PeopleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage23/WNXStage23PeopleView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage23/WNXStage23PeopleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage23/WNXStage23PeopleView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage23/WNXStage23ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage23/WNXStage23ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage23/WNXStage23ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage23/WNXStage23ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage24/WNXCockroachView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage24/WNXCockroachView.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage24/WNXCockroachView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage24/WNXCockroachView.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage24/WNXCockroachView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage24/WNXCockroachView.xib -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage24/WNXStage24View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage24/WNXStage24View.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage24/WNXStage24View.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage24/WNXStage24View.m -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage24/WNXStage24ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage24/WNXStage24ViewController.h -------------------------------------------------------------------------------- /Hardest/Classes/Stage/Stage24/WNXStage24ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/Stage/Stage24/WNXStage24ViewController.m -------------------------------------------------------------------------------- /Hardest/Classes/View/PrepareView/WNXPrepareScoreView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/View/PrepareView/WNXPrepareScoreView.h -------------------------------------------------------------------------------- /Hardest/Classes/View/PrepareView/WNXPrepareScoreView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/View/PrepareView/WNXPrepareScoreView.m -------------------------------------------------------------------------------- /Hardest/Classes/View/SelectStageView/WNXStageListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/View/SelectStageView/WNXStageListView.h -------------------------------------------------------------------------------- /Hardest/Classes/View/SelectStageView/WNXStageListView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/View/SelectStageView/WNXStageListView.m -------------------------------------------------------------------------------- /Hardest/Classes/View/SelectStageView/WNXStageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/View/SelectStageView/WNXStageView.h -------------------------------------------------------------------------------- /Hardest/Classes/View/SelectStageView/WNXStageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/View/SelectStageView/WNXStageView.m -------------------------------------------------------------------------------- /Hardest/Classes/View/SelectStageView/WNXStageView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Classes/View/SelectStageView/WNXStageView.xib -------------------------------------------------------------------------------- /Hardest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/Info.plist -------------------------------------------------------------------------------- /Hardest/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/PrefixHeader.pch -------------------------------------------------------------------------------- /Hardest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/Hardest/main.m -------------------------------------------------------------------------------- /HardestTests/HardestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/HardestTests/HardestTests.m -------------------------------------------------------------------------------- /HardestTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/HardestTests/Info.plist -------------------------------------------------------------------------------- /HardestUITests/HardestUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/HardestUITests/HardestUITests.m -------------------------------------------------------------------------------- /HardestUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/HardestUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhongTaoTian/Hardest/HEAD/README.md --------------------------------------------------------------------------------