BillySheet/include/billy_sheet.hpp

17 lines
276 B
C++

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