mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 20:13:40 +00:00
15 lines
206 B
C++
15 lines
206 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "Stat.h"
|
|
|
|
class ItemStat : public Stat {
|
|
private:
|
|
const int itemId;
|
|
|
|
public:
|
|
ItemStat(int id, const std::string& name, int itemId);
|
|
int getItemId();
|
|
};
|