blob: bce6e5af8be7685e09c2f2cf4efedabea732cd1f (
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
34
35
36
37
38
39
40
41
42
43
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* MateriaSource.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/14 17:19:10 by charles #+# #+# */
/* Updated: 2020/04/14 17:51:07 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#include "MateriaSource.hpp"
MateriaSource::MateriaSource()
{
}
MateriaSource::MateriaSource(MateriaSource const& other)
{
*this = other;
}
void MateriaSource::operator=(MateriaSource const& other)
{
}
MateriaSource::~MateriaSource()
{
}
void MateriaSource::learnMateria(AMateria* materia)
{
}
AMateria* MateriaSource::createMateria(std::string const& type)
{
return nullptr;
}
|