mirror of
https://github.com/Patoke/LCERenewed.git
synced 2026-08-05 13:36:53 +00:00
11 lines
173 B
C++
11 lines
173 B
C++
#pragma once
|
|
|
|
#include "Item.h"
|
|
|
|
class SimpleFoiledItem : public Item
|
|
{
|
|
public:
|
|
SimpleFoiledItem(int id);
|
|
|
|
bool isFoil(shared_ptr<ItemInstance> itemInstance);
|
|
}; |