Maze / Library /PackageCache /com.unity.visualscripting@1.8.0 /Runtime /VisualScripting.Flow /Dependencies /NCalc /ParameterArgs.cs
| 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; } | |
| } | |
| } | |