标签:col raw span efi version color string ios stream
[第2次修改]
1 #ifndef DISPLAY_H 2 #define DISPLAY_H 3 #include <iostream> 4 #include <string> 5 #include "AI.h" 6 #include "PLAYER.h" 7 class PLAYER; 8 class AI; 9 class DISPLAY 10 { 11 public: 12 DISPLAY(std::string v):version(v){}; 13 void logo(); 14 void draw(AI &a,PLAYER &p); 15 private: 16 std::string version; 17 }; 18 #endif
标签:col raw span efi version color string ios stream
原文地址:http://www.cnblogs.com/lostmatch/p/7979677.html