mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-22 16:42:53 +00:00
16 lines
274 B
C++
16 lines
274 B
C++
#pragma once
|
|
|
|
#include "Item.h"
|
|
|
|
class Player;
|
|
class Level;
|
|
|
|
class EggItem : public Item {
|
|
public:
|
|
EggItem(int id);
|
|
|
|
virtual std::shared_ptr<ItemInstance> use(
|
|
std::shared_ptr<ItemInstance> instance, Level* level,
|
|
std::shared_ptr<Player> player);
|
|
};
|