mirror of
https://github.com/lceonline/MCLEServer.git
synced 2026-07-21 00:47:04 +00:00
13 lines
198 B
C++
13 lines
198 B
C++
#include "stdafx.h"
|
|
|
|
#include "SimpleFoiledItem.h"
|
|
|
|
SimpleFoiledItem::SimpleFoiledItem(int id) : Item(id)
|
|
{
|
|
}
|
|
|
|
bool SimpleFoiledItem::isFoil(shared_ptr<ItemInstance> itemInstance)
|
|
{
|
|
return true;
|
|
}
|