mirror of
https://github.com/jie65535/Ancient-Spider.git
synced 2024-07-27 18:54:53 +08:00
26 lines
354 B
C++
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();
|
|
};
|
|
|