summaryrefslogtreecommitdiff
path: root/inc/resource.hpp
blob: ed9f098ffa87e7f0bb0c0d22ba28be89d9231720 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef resource_h
#define resource_h

#include "entity.hpp"

class Resource: public Entity
{
  public:
    Resource(Window m, SDL_Rect Rect);
    void eat();

    int getAmount(){return amount;};

  private:
    int amount;
};

#endif