playtest-unity/playtest/Library/PackageCache/com.unity.visualscripting@1.../Runtime/VisualScripting.Flow/Dependencies/NCalc/ParameterArgs.cs

25 lines
439 B
C#
Raw Normal View History

2023-06-19 23:21:21 -04:00
using System;
namespace Unity.VisualScripting.Dependencies.NCalc
{
public class ParameterArgs : EventArgs
{
private object _result;
public object Result
{
get
{
return _result;
}
set
{
_result = value;
HasResult = true;
}
}
public bool HasResult { get; set; }
}
}