mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-23 22:13:37 +00:00
12 lines
265 B
C++
12 lines
265 B
C++
#pragma once
|
|
|
|
#include "ComplexItem.h"
|
|
|
|
class EmptyMapItem : public ComplexItem {
|
|
public:
|
|
EmptyMapItem(int id);
|
|
|
|
std::shared_ptr<ItemInstance> use(
|
|
std::shared_ptr<ItemInstance> itemInstance, Level* level,
|
|
std::shared_ptr<Player> player);
|
|
}; |