mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-26 08:33:39 +00:00
12 lines
255 B
C++
12 lines
255 B
C++
#pragma once
|
|
|
|
#include "Item.h"
|
|
|
|
class SnowballItem : public Item {
|
|
public:
|
|
SnowballItem(int id);
|
|
|
|
virtual std::shared_ptr<ItemInstance> use(
|
|
std::shared_ptr<ItemInstance> instance, Level* level,
|
|
std::shared_ptr<Player> player);
|
|
}; |