blob: 3c58c829bffd171fd87af3dc9173c2699b7d7cdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#pragma once
#include "backend/String.h"
class Enemy {
public:
void set_name(const String & name);
const String & get_name() const;
void set_description(const String & description);
const String & get_description() const;
private:
friend class EnemyFactory;
Enemy(const String & name, const String & description);
public:
virtual ~Enemy() = default;
private:
String name;
String description;
};
|