BillySheet/include/billy_sheet.hpp

17 lines
276 B
C++
Raw Normal View History

2022-01-10 21:16:05 +01:00
#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