嘿家伙,我想知道是否有 C++ RPG 库存系统的教程或示例代码。我浏览了该网站,我只发现创建了两个类,项目和库存,并将它们中的每一个用于项目的详细信息并将项目保存在链接列表中。
这是我到目前为止所拥有的..
using namespace std;
int maxWeight;
class inventory { //manages the entire inventory
public:
inventory();
inventory::inventory(int defaultWeight = maxWeight);
private:
int maxWeight = 100;
};
class item { //holds the details about a particular item
public:
item();
item(char* name, double weight);
private:
char* name;
double weight;
};
我希望我对这样一个教程的长期搜索可以结束..
谢谢你。