mirror of
https://github.com/jie65535/Ancient-Spider.git
synced 2024-07-27 18:54:53 +08:00
提交源码
编译环境 VS2017
This commit is contained in:
25
蜘蛛纸牌/View.h
Normal file
25
蜘蛛纸牌/View.h
Normal 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();
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user