#ifndef __OBJECT_H #define __OBJECT_H #include <string> class GameObject { public: GameObject(int x); ~GameObject(); private: int attribute; std::string ...
確定! 回上一頁