summaryrefslogtreecommitdiff
path: root/inc/resource.hpp
blob: 07d42d4ee094d6df080a6513b075b68ef7f99d54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef resource_h
#define resource_h

#include <cstdlib>

#include "entity.hpp"
#include "functions.hpp"

class Resource: public Entity
{
        public:
                Resource(Rectangle t);

                void    grow();
                void    eat(int bite);

                int     getAmount(){return amount;};

        private:
                int     amount;
                int     growAmount;
};

#endif