mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-31 20:03:00 +00:00
15 lines
310 B
C++
15 lines
310 B
C++
#pragma once
|
|
|
|
#include "FoodItem.h"
|
|
|
|
class Player;
|
|
class Level;
|
|
|
|
class BowlFoodItem : public FoodItem {
|
|
public:
|
|
BowlFoodItem(int id, int nutrition);
|
|
|
|
std::shared_ptr<ItemInstance> useTimeDepleted(
|
|
std::shared_ptr<ItemInstance> instance, Level* level,
|
|
std::shared_ptr<Player> player);
|
|
}; |