blob: 60ffb91660ec940ff385197f87732219a8991d62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "ConsumableObject.h"
class ExpConsumableObject : public ConsumableObject {
using ConsumableObject::ConsumableObject;
public:
virtual void consume(Player & player);
};
|