blob: 087af3e0c15d00bfe7b127fde2b0713fb4e9e827 (
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
25
26
27
28
29
30
31
32
33
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* MateriaSource.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/14 17:19:10 by charles #+# #+# */
/* Updated: 2020/11/12 15:45:23 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "MateriaSource.hpp"
MateriaSource::MateriaSource() {}
MateriaSource::MateriaSource(MateriaSource const& other) { *this = other; }
void MateriaSource::operator=(MateriaSource const& other)
{
return *this;
}
MateriaSource::~MateriaSource() {}
void MateriaSource::learnMateria(AMateria* materia)
{
}
AMateria* MateriaSource::createMateria(std::string const& type)
{
return NULL;
}
|