2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-08 09:47:26 +00:00

Parse menu function values

This commit is contained in:
Jan
2021-12-27 11:28:11 +01:00
parent 7ea53808b7
commit d4154d0cc2
2 changed files with 42 additions and 34 deletions

View File

@@ -2,11 +2,14 @@
#include <string>
#include "Parsing/Simple/Expression/ISimpleExpression.h"
namespace menu
{
class CommonFunctionDef
{
public:
std::string m_name;
std::unique_ptr<ISimpleExpression> m_value;
};
}