- 586 名前:デフォルトの名無しさん [2008/01/29(火) 23:44:45 ]
- 質問させてください。以下のソースをコンパイルしたところ、エラーが吐かれたのですが、その理由が良く分かりません。
#include <fstream> #include <TCHAR.h> #include <string> #include <sstream> using namespace std; class zantei{ private: // 行動データ構造体 class Action { public: int No; // 行動番号 (無しなら0) LPTSTR Type; // 行動種類 (無しなら0) LPTSTR Detail; // 行動詳細 (無しなら0) int Damage; // ダメージ(無しなら100) LPTSTR Color; // 色 (無しなら0) int X; // マルチプレイ用の遠距離行動(無しなら0) }; Action action[32]; public: BOOL LoadAction(); };
|

|