mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-10 11:17:15 +00:00
12 lines
233 B
C++
12 lines
233 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);
|
|
}; |