提交源码

编译环境 VS2017
This commit is contained in:
筱傑
2018-09-24 12:54:34 +08:00
committed by GitHub
parent a980868e77
commit a6666bcd52
33 changed files with 1059 additions and 0 deletions

25
蜘蛛纸牌/View.h Normal file
View File

@@ -0,0 +1,25 @@
#pragma once
#include "Card.h"
#include "CardType.h"
#include "Game.h"
extern const char *CardTypeView[];
extern const char *CardValueView[];
class Game;
class View
{
private:
Game &_Game;
public:
View(Game &game) :_Game(game) {}
~View();
void ShowCard(bool isNull);
void ShowCard(Card card);
void ShowGame();
};