]> git.localhorst.tv Git - blobs.git/blob - src/creature/NameGenerator.hpp
simple name generator
[blobs.git] / src / creature / NameGenerator.hpp
1 #ifndef BLOBS_CREATURE_NAMEGENERATOR_HPP_
2 #define BLOBS_CREATURE_NAMEGENERATOR_HPP_
3
4 #include <string>
5
6
7 namespace blobs {
8 namespace creature {
9
10 class NameGenerator {
11
12 public:
13         NameGenerator();
14         ~NameGenerator();
15
16 public:
17         std::string Sequential();
18
19 private:
20         int counter;
21
22 };
23
24 }
25 }
26
27 #endif