BillySheet/include/billy_sheet.hpp

22 lines
355 B
C++

#ifndef BILLYSHEET_BILLY_SHEET_HPP
#define BILLYSHEET_BILLY_SHEET_HPP
#include <random>
namespace character {
class BillySheet final {
private:
std::mt19937_64 engine{ std::random_device{ "rdseed" }() };
std::string caractere{};
public:
BillySheet() = default;
~BillySheet() noexcept = default;
};
}
#endif //BILLYSHEET_BILLY_SHEET_HPP