This is one of the first commits in a plan to remove all `using namespace std;` lines in the entire codebase as it is considered anti-pattern today.
13 lines
344 B
C++
13 lines
344 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
#include "Item.h"
|
|
|
|
class SaddleItem : public Item
|
|
{
|
|
public:
|
|
SaddleItem(int id);
|
|
|
|
virtual bool interactEnemy(std::shared_ptr<ItemInstance> itemInstance, std::shared_ptr<Mob> mob);
|
|
virtual bool hurtEnemy(std::shared_ptr<ItemInstance> itemInstance, std::shared_ptr<Mob> mob, std::shared_ptr<Mob> attacker);
|
|
}; |