some simple exercises in c++ //////////////////// ex00 - ex02 //////////////////// /* implementing animals (Cat, Dog --> Animal) / / that have brain (Brain) / / / / educational goal: learn inheritance, avoid / / collision between classes derived from the / / same parent class, deep copies, / / pure functions */ /////////////////////////////////////////////////////
////////////////////////// ex03 ////////////////////////// /* implementing characters (Character) and equip / / them with materials (AMateria) of type ice (Ice) / / and type cure (Cure) / / / / educational goal: same as ex00 - ex02 + Interfaces */ //////////////////////////////////////////////////////////