mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 22:38:06 -05:00
13 lines
133 B
C++
13 lines
133 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace menu
|
|
{
|
|
class CommonFunctionDef
|
|
{
|
|
public:
|
|
std::string m_name;
|
|
};
|
|
}
|