在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 手游欢乐麻将源码

手游欢乐麻将源码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:16.22M
  • 下载次数:27
  • 浏览次数:1385
  • 发布时间:2021-03-01
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
手游欢乐麻将源码Cocos2D-X《欢乐麻将》手游完整源码,Cocos2D-X引擎,源码仅供学习研究,禁止用于商业用途。
【实例截图】
【核心代码】
e8f886a3-8d9a-4cb8-b33b-5cd9c70157a7
└── 欢乐麻将
├── www.yxkfw.com 手机游戏源码下载.txt
└── xzmj2
├── Classes
│   ├── AppDelegate.cpp
│   ├── AppDelegate.h
│   ├── AppMacros.cpp
│   ├── AppMacros.h
│   ├── CallJni.cpp
│   ├── CallJni.h
│   ├── Common
│   │   ├── CommonFunction.cpp
│   │   ├── CommonFunction.h
│   │   ├── ConstantDef.h
│   │   ├── md5.cpp
│   │   ├── md5.h
│   │   ├── MyTinyXmlParser.cpp
│   │   └── MyTinyXmlParser.h
│   ├── Entity
│   │   ├── DeskEntity.cpp
│   │   └── DeskEntity.h
│   ├── GameCore
│   │   ├── AI
│   │   │   ├── Robot.cpp
│   │   │   └── Robot.h
│   │   ├── ClientCommon.h
│   │   ├── ClientFrameDefs.h
│   │   ├── ClientMjDefs.h
│   │   ├── ClientScoreDefs.h
│   │   ├── GameLogical.cpp
│   │   ├── GameLogical.h
│   │   ├── MjDef.h
│   │   ├── RuleGen
│   │   │   └── RuleDef.h
│   │   ├── ServerFrameDefs.h
│   │   └── TypeDef.h
│   ├── HelloWorldScene.cpp
│   ├── HelloWorldScene.h
│   ├── Layer
│   │   ├── GameCjLayer.cpp
│   │   ├── GameCjLayer.h
│   │   ├── GameDesk.cpp
│   │   ├── GameDesk.h
│   │   ├── GameHelp.cpp
│   │   ├── GameHelp.h
│   │   ├── GameMenu.cpp
│   │   ├── GameMenu.h
│   │   ├── GameMessage.cpp
│   │   ├── GameMessage.h
│   │   ├── GameMGLayer.cpp
│   │   ├── GameMGLayer.h
│   │   ├── GamePause.cpp
│   │   ├── GamePause.h
│   │   ├── GameResult.cpp
│   │   ├── GameResult.h
│   │   ├── GameSet.cpp
│   │   ├── GameSet.h
│   │   ├── GameShowCJ.cpp
│   │   ├── GameShowCJ.h
│   │   ├── GkInfoDetailLayer.cpp
│   │   ├── GkInfoDetailLayer.h
│   │   ├── GkInfoLayer.cpp
│   │   ├── GkInfoLayer.h
│   │   ├── GuanKaLayer.cpp
│   │   ├── GuanKaLayer.h
│   │   ├── ParentLayer.h
│   │   ├── PersonSet.cpp
│   │   ├── PersonSet.h
│   │   ├── SetProgress.cpp
│   │   ├── SetProgress.h
│   │   ├── SplashLayer.cpp
│   │   └── SplashLayer.h
│   ├── Scene
│   │   ├── GameCjScene.cpp
│   │   ├── GameCjScene.h
│   │   ├── GameMoreGameScene.cpp
│   │   ├── GameMoreGameScene.h
│   │   ├── GameScene.cpp
│   │   ├── GameScene.h
│   │   ├── GkInfoScene.cpp
│   │   ├── GkInfoScene.h
│   │   ├── GuanKaScene.cpp
│   │   ├── GuanKaScene.h
│   │   ├── HelpScene.cpp
│   │   ├── HelpScene.h
│   │   ├── LoadingScene.cpp
│   │   ├── LoadingScene.h
│   │   ├── MenuScene.cpp
│   │   ├── MenuScene.h
│   │   ├── PersonSetScene.cpp
│   │   ├── PersonSetScene.h
│   │   ├── SetScene.cpp
│   │   └── SetScene.h
│   ├── Sprite
│   │   ├── Batch
│   │   │   ├── ActionBatch.cpp
│   │   │   ├── ActionBatch.h
│   │   │   ├── DeskCardsBatch.cpp
│   │   │   ├── DeskCardsBatch.h
│   │   │   ├── GameCjBatch.cpp
│   │   │   ├── GameCjBatch.h
│   │   │   ├── GameMGBatch.cpp
│   │   │   ├── GameMGBatch.h
│   │   │   ├── GkInfoBatch.cpp
│   │   │   ├── GkInfoBatch.h
│   │   │   ├── GuanKaBatch.cpp
│   │   │   ├── GuanKaBatch.h
│   │   │   ├── MarkBatch.cpp
│   │   │   ├── MarkBatch.h
│   │   │   ├── MyCardsBatch.cpp
│   │   │   ├── MyCardsBatch.h
│   │   │   ├── SplashBatch.cpp
│   │   │   └── SplashBatch.h
│   │   ├── Card.cpp
│   │   ├── Card.h
│   │   ├── GameCjSprite.cpp
│   │   ├── GameCjSprite.h
│   │   ├── GameMGSprite.cpp
│   │   ├── GameMGSprite.h
│   │   ├── GuanKaSprite.cpp
│   │   ├── GuanKaSprite.h
│   │   ├── MyCard.cpp
│   │   ├── MyCard.h
│   │   ├── OutCard.cpp
│   │   ├── OutCard.h
│   │   ├── ScrollWordAndImage.cpp
│   │   ├── ScrollWordAndImage.h
│   │   ├── SelectSprite.cpp
│   │   ├── SelectSprite.h
│   │   ├── ShowCJ.cpp
│   │   ├── ShowCJ.h
│   │   ├── SpriteWordAndImage.cpp
│   │   ├── SpriteWordAndImage.h
│   │   ├── Timer.cpp
│   │   └── Timer.h
│   ├── StoreLayer.cpp
│   ├── StoreLayer.h
│   └── tinyxml
│   ├── tinystr.cpp
│   ├── tinystr.h
│   ├── tinyxml.cpp
│   ├── tinyxmlerror.cpp
│   ├── tinyxml.h
│   ├── tinyxmlparser.cpp
│   └── xmltest.cpp
├── proj.android
│   ├── AndroidManifest.xml
│   ├── ant.properties
│   ├── assets
│   │   ├── Charge.xml
│   │   ├── cj.xml
│   │   ├── CMGC
│   │   │   ├── Android.Sdk.Lib_20016_DE00D1F6523E26CDDB0F91A0BA259CF8.jar
│   │   │   ├── ConfigExtend.xml
│   │   │   └── GH.data
│   │   ├── Config.xml
│   │   ├── ConsumeCodeInfo.xml
│   │   ├── d_data_store.dat
│   │   ├── fonts
│   │   │   └── Marker Felt.ttf
│   │   ├── guanka.xml
│   │   ├── help.xml
│   │   ├── Image
│   │   │   ├── bg_new
│   │   │   │   ├── bg_gk_name_10.png
│   │   │   │   ├── bg_gk_name_11.png
│   │   │   │   ├── bg_gk_name_12.png
│   │   │   │   ├── bg_gk_name_13.png
│   │   │   │   ├── bg_gk_name_1.png
│   │   │   │   ├── bg_gk_name_2.png
│   │   │   │   ├── bg_gk_name_3.png
│   │   │   │   ├── bg_gk_name_4.png
│   │   │   │   ├── bg_gk_name_5.png
│   │   │   │   ├── bg_gk_name_6.png
│   │   │   │   ├── bg_gk_name_7.png
│   │   │   │   ├── bg_gk_name_8.png
│   │   │   │   ├── bg_gk_name_9.png
│   │   │   │   ├── bg.jpg
│   │   │   │   ├── btn_splash_start_1.png
│   │   │   │   ├── btn_splash_start_2.png
│   │   │   │   ├── loading.jpg
│   │   │   │   ├── splash_page_1.jpg
│   │   │   │   ├── splash_page_2.jpg
│   │   │   │   ├── splash_page_3.jpg
│   │   │   │   ├── splash_page_select.png
│   │   │   │   └── splash_page_unselect.png
│   │   │   ├── GK_new
│   │   │   │   ├── gk_bg.png
│   │   │   │   ├── gk_kuang.png
│   │   │   │   ├── guanka.plist
│   │   │   │   └── guanka.png
│   │   │   ├── Menu_new
│   │   │   │   ├── bitmapFontTest4.fnt
│   │   │   │   ├── bitmapFontTest4.png
│   │   │   │   ├── confirm_2.png
│   │   │   │   ├── confirm.png
│   │   │   │   ├── FourRMB.png
│   │   │   │   ├── frame_mainmenu.jpg
│   │   │   │   ├── frame_message.png
│   │   │   │   ├── frame_pause.png
│   │   │   │   ├── frame_set.png
│   │   │   │   ├── frame_shop.png
│   │   │   │   ├── menu.plist
│   │   │   │   ├── menu.png
│   │   │   │   ├── number.fnt
│   │   │   │   ├── number.png
│   │   │   │   ├── personset.plist
│   │   │   │   ├── personset.png
│   │   │   │   ├── set_progress.png
│   │   │   │   ├── SixRMB.png
│   │   │   │   ├── TowRMB.png
│   │   │   │   ├── white.fnt
│   │   │   │   └── white.png
│   │   │   ├── MJ_new
│   │   │   │   ├── frame_js.png
│   │   │   │   ├── mjtt.plist
│   │   │   │   └── mjtt.png
│   │   │   └── Net
│   │   │   └── Chat
│   │   │   ├── chat_bg.png
│   │   │   ├── chat.plist
│   │   │   └── chat.png
│   │   ├── iridver.dat
│   │   ├── moregames.xml
│   │   ├── OpeningAnimation
│   │   │   ├── g_logo_cp.png
│   │   │   └── g_logo_sp.png
│   │   ├── s_data_store.dat
│   │   └── sound
│   │   ├── complete.OGG
│   │   ├── end.OGG
│   │   ├── failed.OGG
│   │   ├── gaming.OGG
│   │   ├── get.OGG
│   │   ├── man
│   │   │   ├── 0-0.OGG
│   │   │   ├── 0-1.OGG
│   │   │   ├── 10-0.OGG
│   │   │   ├── 10-1.OGG
│   │   │   ├── 11.OGG
│   │   │   ├── 12.OGG
│   │   │   ├── 13.OGG
│   │   │   ├── 14.OGG
│   │   │   ├── 15.OGG
│   │   │   ├── 16.OGG
│   │   │   ├── 17.OGG
│   │   │   ├── 18-0.OGG
│   │   │   ├── 18-1.OGG
│   │   │   ├── 18-2.OGG
│   │   │   ├── 19.OGG
│   │   │   ├── 1.OGG
│   │   │   ├── 20.OGG
│   │   │   ├── 21.OGG
│   │   │   ├── 22-0.OGG
│   │   │   ├── 22-1.OGG
│   │   │   ├── 22-2.OGG
│   │   │   ├── 23.OGG
│   │   │   ├── 24.OGG
│   │   │   ├── 25-0.OGG
│   │   │   ├── 25-1.OGG
│   │   │   ├── 26-0.OGG
│   │   │   ├── 26-1.OGG
│   │   │   ├── 2.OGG
│   │   │   ├── 3.OGG
│   │   │   ├── 4.OGG
│   │   │   ├── 5.OGG
│   │   │   ├── 6.OGG
│   │   │   ├── 7.OGG
│   │   │   ├── 8.OGG
│   │   │   ├── 9-0.OGG
│   │   │   ├── 9-1.OGG
│   │   │   ├── 9-2.OGG
│   │   │   ├── angang-0.OGG
│   │   │   ├── angang-1.OGG
│   │   │   ├── gang-0.OGG
│   │   │   ├── gang-1.OGG
│   │   │   ├── gang-2.OGG
│   │   │   ├── hu1.OGG
│   │   │   ├── hu2.OGG
│   │   │   ├── hu.OGG
│   │   │   ├── peng0.OGG
│   │   │   ├── peng1.OGG
│   │   │   ├── peng2.OGG
│   │   │   ├── peng3.OGG
│   │   │   └── peng4.OGG
│   │   ├── through.OGG
│   │   └── woman
│   │   ├── 0-0.OGG
│   │   ├── 0-1.OGG
│   │   ├── 10-0.OGG
│   │   ├── 10-1.OGG
│   │   ├── 11.OGG
│   │   ├── 12.OGG
│   │   ├── 13.OGG
│   │   ├── 14.OGG
│   │   ├── 15.OGG
│   │   ├── 16.OGG
│   │   ├── 17.OGG
│   │   ├── 18-0.OGG
│   │   ├── 18-1.OGG
│   │   ├── 18-2.OGG
│   │   ├── 19.OGG
│   │   ├── 1.OGG
│   │   ├── 20.OGG
│   │   ├── 21.OGG
│   │   ├── 22-0.OGG
│   │   ├── 22-1.OGG
│   │   ├── 22-2.OGG
│   │   ├── 23.OGG
│   │   ├── 24.OGG
│   │   ├── 25-0.OGG
│   │   ├── 25-1.OGG
│   │   ├── 26-0.OGG
│   │   ├── 26-1.OGG
│   │   ├── 2.OGG
│   │   ├── 3.OGG
│   │   ├── 4.OGG
│   │   ├── 5.OGG
│   │   ├── 6.OGG
│   │   ├── 7.OGG
│   │   ├── 8.OGG
│   │   ├── 9-0.OGG
│   │   ├── 9-1.OGG
│   │   ├── 9-2.OGG
│   │   ├── angang-0.OGG
│   │   ├── angang-1.OGG
│   │   ├── gang-0.OGG
│   │   ├── gang-1.OGG
│   │   ├── gang-2.OGG
│   │   ├── hu1.OGG
│   │   ├── hu2.OGG
│   │   ├── hu.OGG
│   │   ├── peng0.OGG
│   │   ├── peng1.OGG
│   │   ├── peng2.OGG
│   │   ├── peng3.OGG
│   │   └── peng4.OGG
│   ├── build_native.sh
│   ├── build.xml
│   ├── jni
│   │   ├── Android.mk
│   │   ├── Android.mk.bak
│   │   ├── Application.mk
│   │   ├── hellocpp
│   │   │   └── main.cpp
│   │   └── libmegjb.so
│   ├── libs
│   │   └── armeabi
│   │   ├── libcocos2dcpp.so
│   │   └── libmegjb.so
│   ├── lint.xml
│   ├── proguard-project.txt
│   ├── project.properties
│   ├── README.md
│   ├── res
│   │   ├── drawable-hdpi
│   │   │   ├── gc_anim_title.png
│   │   │   ├── gc_arrow_big.png
│   │   │   ├── gc_arrow_little.png
│   │   │   ├── gc_arrow_text.png
│   │   │   ├── gc_center_edit.png
│   │   │   ├── gc_center_help.png
│   │   │   ├── gc_center_recharge.png
│   │   │   ├── gc_center_safely.png
│   │   │   ├── gc_center_save.png
│   │   │   ├── gc_contract_press.png
│   │   │   ├── gc_edit_del.png
│   │   │   ├── gc_gamehall.png
│   │   │   ├── gc_icon_extend.png
│   │   │   ├── gc_icon_shrink.png
│   │   │   ├── gc_more_game.png
│   │   │   ├── gc_notification_icon.png
│   │   │   ├── gc_recommend_flow_one.png
│   │   │   ├── gc_recommend_flow_third.png
│   │   │   ├── gc_recommend_flow_two.png
│   │   │   ├── gc_sound_off.png
│   │   │   ├── gc_sound_on.png
│   │   │   ├── gc_start_cmcc.png
│   │   │   ├── gc_start_game.png
│   │   │   ├── gc_start_login.png
│   │   │   ├── gc_start_logo.png
│   │   │   ├── gc_step_focused.png
│   │   │   ├── gc_step_unfocus.png
│   │   │   ├── gc_title_arrow.png
│   │   │   ├── gc_title_logo.png
│   │   │   ├── gc_user_center.png
│   │   │   └── icon.png
│   │   ├── drawable-ldpi
│   │   │   └── icon.png
│   │   ├── drawable-mdpi
│   │   │   └── icon.png
│   │   ├── raw
│   │   │   └── opening_sound.mp3
│   │   └── values
│   │   ├── g_strings.xml
│   │   └── strings.xml
│   ├── runtime
│   │   └── CMBilling.jar
│   └── src
│   ├── com
│   │   ├── cgc
│   │   │   └── frame
│   │   │   ├── Cocos2dxFrame.java
│   │   │   └── Common.java
│   │   └── lyp
│   │   └── xzmj
│   │   ├── cmgameApplication.java
│   │   └── xzmj2.java
│   └── org
│   └── cocos2dx
│   └── lib
│   ├── Cocos2dxAccelerometer.java
│   ├── Cocos2dxActivity.java
│   ├── Cocos2dxBitmap.java
│   ├── Cocos2dxEditBoxDialog.java
│   ├── Cocos2dxEditText.java
│   ├── Cocos2dxETCLoader.java
│   ├── Cocos2dxGLSurfaceView.java
│   ├── Cocos2dxHandler.java
│   ├── Cocos2dxHelper.java
│   ├── Cocos2dxLocalStorage.java
│   ├── Cocos2dxMusic.java
│   ├── Cocos2dxRenderer.java
│   ├── Cocos2dxSound.java
│   ├── Cocos2dxTextInputWraper.java
│   └── Cocos2dxTypefaces.java
├── proj.ios
│   ├── AppController.h
│   ├── AppController.mm
│   ├── Default@2x.png
│   ├── Default-568h@2x.png
│   ├── Default.png
│   ├── Icon-114.png
│   ├── Icon-120.png
│   ├── Icon-144.png
│   ├── Icon-152.png
│   ├── Icon-57.png
│   ├── Icon-72.png
│   ├── Icon-76.png
│   ├── Info.plist
│   ├── main.m
│   ├── Prefix.pch
│   ├── RootViewController.h
│   ├── RootViewController.mm
│   └── xzmj2.xcodeproj
│   └── project.pbxproj
├── proj.win32
│   ├── main.cpp
│   ├── main.h
│   ├── xzmj2.sln
│   ├── xzmj2.v11.suo
│   ├── xzmj2.vcxproj
│   ├── xzmj2.vcxproj.filters
│   └── xzmj2.vcxproj.user
└── Resources
├── cj.xml
├── CloseNormal.png
├── CloseSelected.png
├── feeInfo.dat
├── fonts
│   └── Marker Felt.ttf
├── guanka.xml
├── HelloWorld.png
├── help.xml
├── help.xml.bak
├── Image
│   ├── bg_new
│   │   ├── bg_gk_name_10.png
│   │   ├── bg_gk_name_11.png
│   │   ├── bg_gk_name_12.png
│   │   ├── bg_gk_name_13.png
│   │   ├── bg_gk_name_1.png
│   │   ├── bg_gk_name_2.png
│   │   ├── bg_gk_name_3.png
│   │   ├── bg_gk_name_4.png
│   │   ├── bg_gk_name_5.png
│   │   ├── bg_gk_name_6.png
│   │   ├── bg_gk_name_7.png
│   │   ├── bg_gk_name_8.png
│   │   ├── bg_gk_name_9.png
│   │   ├── bg.jpg
│   │   ├── btn_splash_start_1.png
│   │   ├── btn_splash_start_2.png
│   │   ├── loading.jpg
│   │   ├── splash_page_1.jpg
│   │   ├── splash_page_2.jpg
│   │   ├── splash_page_3.jpg
│   │   ├── splash_page_select.png
│   │   ├── splash_page_unselect.png
│   │   └── Thumbs.db
│   ├── GK_new
│   │   ├── gk_bg.png
│   │   ├── gk_kuang.png
│   │   ├── guanka.plist
│   │   ├── guanka.png
│   │   └── Thumbs.db
│   ├── Menu_new
│   │   ├── bitmapFontTest4.fnt
│   │   ├── bitmapFontTest4.png
│   │   ├── confirm_2.png
│   │   ├── confirm.png
│   │   ├── FourRMB.png
│   │   ├── frame_mainmenu.jpg
│   │   ├── frame_message.png
│   │   ├── frame_pause.png
│   │   ├── frame_set.png
│   │   ├── frame_shop.png
│   │   ├── menu.plist
│   │   ├── menu.png
│   │   ├── number.fnt
│   │   ├── number.png
│   │   ├── personset.plist
│   │   ├── personset.png
│   │   ├── set_progress.png
│   │   ├── SixRMB.png
│   │   ├── Thumbs.db
│   │   ├── TowRMB.png
│   │   ├── white.fnt
│   │   └── white.png
│   ├── MJ_new
│   │   ├── frame_js.png
│   │   ├── mjtt.plist
│   │   ├── mjtt.png
│   │   └── Thumbs.db
│   └── Net
│   └── Chat
│   ├── chat_bg.png
│   ├── chat.plist
│   └── chat.png
├── moregames.xml
├── sound
│   ├── complete.OGG
│   ├── end.OGG
│   ├── failed.OGG
│   ├── gaming.OGG
│   ├── get.OGG
│   ├── man
│   │   ├── 0-0.OGG
│   │   ├── 0-1.OGG
│   │   ├── 10-0.OGG
│   │   ├── 10-1.OGG
│   │   ├── 11.OGG
│   │   ├── 12.OGG
│   │   ├── 13.OGG
│   │   ├── 14.OGG
│   │   ├── 15.OGG
│   │   ├── 16.OGG
│   │   ├── 17.OGG
│   │   ├── 18-0.OGG
│   │   ├── 18-1.OGG
│   │   ├── 18-2.OGG
│   │   ├── 19.OGG
│   │   ├── 1.OGG
│   │   ├── 20.OGG
│   │   ├── 21.OGG
│   │   ├── 22-0.OGG
│   │   ├── 22-1.OGG
│   │   ├── 22-2.OGG
│   │   ├── 23.OGG
│   │   ├── 24.OGG
│   │   ├── 25-0.OGG
│   │   ├── 25-1.OGG
│   │   ├── 26-0.OGG
│   │   ├── 26-1.OGG
│   │   ├── 2.OGG
│   │   ├── 3.OGG
│   │   ├── 4.OGG
│   │   ├── 5.OGG
│   │   ├── 6.OGG
│   │   ├── 7.OGG
│   │   ├── 8.OGG
│   │   ├── 9-0.OGG
│   │   ├── 9-1.OGG
│   │   ├── 9-2.OGG
│   │   ├── angang-0.OGG
│   │   ├── angang-1.OGG
│   │   ├── gang-0.OGG
│   │   ├── gang-1.OGG
│   │   ├── gang-2.OGG
│   │   ├── hu1.OGG
│   │   ├── hu2.OGG
│   │   ├── hu.OGG
│   │   ├── peng0.OGG
│   │   ├── peng1.OGG
│   │   ├── peng2.OGG
│   │   ├── peng3.OGG
│   │   └── peng4.OGG
│   ├── through.OGG
│   └── woman
│   ├── 0-0.OGG
│   ├── 0-1.OGG
│   ├── 10-0.OGG
│   ├── 10-1.OGG
│   ├── 11.OGG
│   ├── 12.OGG
│   ├── 13.OGG
│   ├── 14.OGG
│   ├── 15.OGG
│   ├── 16.OGG
│   ├── 17.OGG
│   ├── 18-0.OGG
│   ├── 18-1.OGG
│   ├── 18-2.OGG
│   ├── 19.OGG
│   ├── 1.OGG
│   ├── 20.OGG
│   ├── 21.OGG
│   ├── 22-0.OGG
│   ├── 22-1.OGG
│   ├── 22-2.OGG
│   ├── 23.OGG
│   ├── 24.OGG
│   ├── 25-0.OGG
│   ├── 25-1.OGG
│   ├── 26-0.OGG
│   ├── 26-1.OGG
│   ├── 2.OGG
│   ├── 3.OGG
│   ├── 4.OGG
│   ├── 5.OGG
│   ├── 6.OGG
│   ├── 7.OGG
│   ├── 8.OGG
│   ├── 9-0.OGG
│   ├── 9-1.OGG
│   ├── 9-2.OGG
│   ├── angang-0.OGG
│   ├── angang-1.OGG
│   ├── gang-0.OGG
│   ├── gang-1.OGG
│   ├── gang-2.OGG
│   ├── hu1.OGG
│   ├── hu2.OGG
│   ├── hu.OGG
│   ├── peng0.OGG
│   ├── peng1.OGG
│   ├── peng2.OGG
│   ├── peng3.OGG
│   └── peng4.OGG
└── Thumbs.db

63 directories, 577 files

标签:

实例下载地址

手游欢乐麻将源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警