blob: bb393599b465da8705de7a330d115eb815a574dd (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "Enemy.h"
Enemy::Enemy(const String & name, const String & description) : name(name), description(description) { }
void Enemy::set_name(const String & name) { this->name = name; }
const String & Enemy::get_name() const { return this->name; }
void Enemy::set_description(const String & description) { this->description = description; }
const String & Enemy::get_description() const { return this->description; }
|