-2

嘿家伙,我想知道是否有 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;
};

我希望我对这样一个教程的长期搜索可以结束..

谢谢你。

4

1 回答 1

0

基本上,据我目前的了解,您正在寻找的是库存中的链接列表来存储所有项目。了解链表的工作原理并从那里继续。你可能需要

  1. 添加项目(在添加项目之前检查当前链表的权重)。
  2. 删除项目。
  3. 打印链接列表中的任何内容。
于 2013-01-29T03:21:45.757 回答