mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
10 lines
107 B
C++
10 lines
107 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class NameUtils
|
|
{
|
|
public:
|
|
static std::string GenerateRandomName();
|
|
};
|