mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-23 21:33:37 +00:00
13 lines
188 B
C++
13 lines
188 B
C++
#pragma once
|
|
|
|
#include "Stat.h"
|
|
|
|
class ItemStat : public Stat {
|
|
private:
|
|
const int itemId;
|
|
|
|
public:
|
|
ItemStat(int id, const std::wstring& name, int itemId);
|
|
int getItemId();
|
|
};
|