13 lines
179 B
C++
13 lines
179 B
C++
#pragma once
|
|
|
|
#include <ostd/data/Types.hpp>
|
|
#include <ostd/string/String.hpp>
|
|
|
|
namespace dragon
|
|
{
|
|
class Utils
|
|
{
|
|
public:
|
|
static String genRandomName(uint8_t length);
|
|
};
|
|
}
|