blob: ea08864063eee59f3dcc176932efa28aedf77868 (
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
|
#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;
unsigned get_health() const;
private:
friend class EnemyFactory;
Enemy(const String & name, const String & description);
public:
virtual ~Enemy() = default;
private:
String name;
String description;
unsigned int health_points = 0;
};
|