Jump to

v04-l1-inheritanceConcept

(random out of 10)

What is the inheritance concept called, that is shown in the code ?

class Character {};

class Warrior : public Character{
public:
    int block;
};

???