91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 0.16M
    文件類型: .zip
    金幣: 2
    下載: 1 次
    發布日期: 2021-02-26
  • 語言: C#
  • 標簽: game??

資源簡介

本游戲代碼核心部分已完成,該游戲采用非常簡單的MVC架構設計,本應有數據庫,但目前沒有底層數據庫,而是直接進行簡單初始化;玩家登錄沒有設計,房間也沒有設計,只做了簡單的能玩的基本程序;沒有加入日志記錄,也沒有做try catch;UI美工方面也沒有做,制作了簡單的poker圖片,還需要做更多的美工,設計思想上有UI美工方面的思想;游戲模式的定制與規則也很簡單,離真正的游戲開發還要完善更多的規則和配置


15個任意物品(可以是poker)

以下按poker為例

 

15個poker

分成三行

每行自上而下(其實方向不限)分別是3、5、7個

 

安排兩個玩家,每人可以在一輪內,在任意行拿任意個poker,但不能跨行

 

拿最后一個poker的人即為輸家


資源截圖

代碼片段和文件信息

using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;
using?_357game_model;
using?_357game_dao;

namespace?_357game
{
????public?partial?class?frmPlaying?:?Form
????{
????????PlayerUserDao?_PlayerUserDao?=?new?PlayerUserDao();
????????PokerDao?_PokerDao?=?new?PokerDao();
????????ListyerUser>?_PlayerUserList?=?null;
????????Dictionaryject>?_PokerData?=?null;
????????string?_CurrentSelectKey?=?““;//用于控制可以跨行選中
????????List?_CurrentSelectPokerList?=?new?List();
????????List?_TotalSelectPokerList?=?new?List();
????????int?iCurrentDeskNum?=?0;

????????public?frmPlaying()
????????{
????????????InitializeComponent();
????????????_PlayerUserList?=?_PlayerUserDao.GetPlayerUserList();
????????????_PokerData?=?_PokerDao.GetPokerData();
????????}

????????private?void?frmPlaying_Lo

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2020-06-01?09:34??357game\
?????文件????????4325??2020-06-01?09:32??357game\357game.csproj
?????文件????????3569??2020-06-01?09:32??357game\357game.sln
?????文件???????32768??2020-06-01?09:32??357game\357game.suo
?????目錄???????????0??2020-06-01?09:34??357game\bin\
?????目錄???????????0??2020-06-01?09:34??357game\bin\Debug\
?????文件???????16896??2020-06-01?09:32??357game\bin\Debug\357game.exe
?????文件???????44544??2020-06-01?09:32??357game\bin\Debug\357game.pdb
?????文件???????11600??2020-06-01?09:33??357game\bin\Debug\357game.vshost.exe
?????文件????????5632??2020-06-01?09:32??357game\bin\Debug\357game_dao.dll
?????文件???????15872??2020-06-01?09:32??357game\bin\Debug\357game_dao.pdb
?????文件????????5120??2020-05-31?21:21??357game\bin\Debug\357game_model.dll
?????文件???????17920??2020-05-31?21:21??357game\bin\Debug\357game_model.pdb
?????目錄???????????0??2020-06-01?09:34??357game\bin\Debug\pic\
?????文件????????3175??2020-05-31?20:32??357game\bin\Debug\pic\poker3_1.png
?????文件????????3217??2020-05-31?20:32??357game\bin\Debug\pic\poker3_2.png
?????文件????????3250??2020-05-31?20:33??357game\bin\Debug\pic\poker3_3.png
?????文件????????3201??2020-05-31?20:33??357game\bin\Debug\pic\poker5_4.png
?????文件????????3197??2020-05-31?20:33??357game\bin\Debug\pic\poker5_5.png
?????文件????????3225??2020-05-31?20:34??357game\bin\Debug\pic\poker5_6.png
?????文件????????3180??2020-05-31?20:34??357game\bin\Debug\pic\poker5_7.png
?????文件????????3220??2020-05-31?20:34??357game\bin\Debug\pic\poker5_8.png
?????文件????????3237??2020-05-31?20:37??357game\bin\Debug\pic\poker7_10.png
?????文件????????3161??2020-05-31?20:38??357game\bin\Debug\pic\poker7_11.png
?????文件????????3229??2020-05-31?20:38??357game\bin\Debug\pic\poker7_12.png
?????文件????????3257??2020-05-31?20:39??357game\bin\Debug\pic\poker7_13.png
?????文件????????3229??2020-05-31?20:40??357game\bin\Debug\pic\poker7_14.png
?????文件????????3219??2020-05-31?20:40??357game\bin\Debug\pic\poker7_15.png
?????文件????????3218??2020-05-31?20:37??357game\bin\Debug\pic\poker7_9.png
?????文件???????11423??2020-06-01?09:28??357game\frmPlaying.cs
?????文件????????7204??2020-05-31?23:17??357game\frmPlaying.Designer.cs
............此處省略62個文件信息

評論

共有 條評論