mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
19 lines
376 B
C++
19 lines
376 B
C++
#include "CommonExpressionFunctionCall.h"
|
|
|
|
using namespace menu;
|
|
|
|
CommonExpressionFunctionCall::CommonExpressionFunctionCall(std::string functionName)
|
|
: m_function_name(std::move(functionName))
|
|
{
|
|
}
|
|
|
|
bool CommonExpressionFunctionCall::IsStatic()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
CommonExpressionValue CommonExpressionFunctionCall::Evaluate()
|
|
{
|
|
return CommonExpressionValue(0);
|
|
}
|