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