mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 14:58:10 -05:00
Menu conversion base
This commit is contained in:
@ -7,12 +7,12 @@ CommonExpressionFunctionCall::CommonExpressionFunctionCall(std::string functionN
|
||||
{
|
||||
}
|
||||
|
||||
bool CommonExpressionFunctionCall::IsStatic()
|
||||
bool CommonExpressionFunctionCall::IsStatic() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
SimpleExpressionValue CommonExpressionFunctionCall::Evaluate()
|
||||
SimpleExpressionValue CommonExpressionFunctionCall::Evaluate() const
|
||||
{
|
||||
return SimpleExpressionValue(0);
|
||||
}
|
||||
|
@ -13,7 +13,7 @@ namespace menu
|
||||
|
||||
explicit CommonExpressionFunctionCall(std::string functionName);
|
||||
|
||||
bool IsStatic() override;
|
||||
SimpleExpressionValue Evaluate() override;
|
||||
_NODISCARD bool IsStatic() const override;
|
||||
_NODISCARD SimpleExpressionValue Evaluate() const override;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user