mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-26 10:43:43 +00:00
10 lines
174 B
C++
10 lines
174 B
C++
#pragma once
|
|
|
|
#include "Item.h"
|
|
|
|
class SimpleFoiledItem : public Item {
|
|
public:
|
|
SimpleFoiledItem(int id);
|
|
|
|
bool isFoil(std::shared_ptr<ItemInstance> itemInstance);
|
|
}; |