aboutsummaryrefslogtreecommitdiff
path: root/backend/ElixirConsumableObject.h
blob: a2249c6e86f15c578d7ac1bb157928e77ccc05ca (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "ConsumableObject.h"

class ElixirConsumableObject : public ConsumableObject {
	using ConsumableObject::ConsumableObject;

public:
	virtual void consume(Player & player);
};