码迷,mamicode.com
首页 > 其他好文 > 详细

player.h

时间:2017-12-05 01:03:30      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   string   pam   data   std   rds   void   sel   sig   

[第5次修改]

 1 #ifndef PLAYER_H
 2 #define PLAYER_H
 3 #include "cards.h"
 4 #include "AI.h"
 5 #include "display.h"
 6 class AI;
 7 class DISPLAY;
 8 class PLAYER
 9 {
10     public:
11         friend class AI;
12         friend class USER;
13         friend class DISPLAY;
14         PLAYER(unsigned int amount):Pamount(amount){};
15         void selectcard(CARD &c);
16         void operate(AI &a,DISPLAY &d);
17         void damage_display(std::string attacker,std::string is_attacked,int damage);
18     private:
19         unsigned int Pamount;
20         std::vector<std::string> Pdata;
21 };
22 #endif

 

player.h

标签:style   string   pam   data   std   rds   void   sel   sig   

原文地址:http://www.cnblogs.com/lostmatch/p/7979669.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!