Ancient-Spider/蜘蛛纸牌/View.h
筱傑 a6666bcd52
提交源码
编译环境 VS2017
2018-09-24 12:54:34 +08:00

26 lines
354 B
C++

#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();
};