7 lines
133 B
C++
7 lines
133 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace UUID {
|
|
int dice(int min, int max);
|
|
std::string generateUUID(unsigned int length);
|
|
} |