Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/BehaviorDesigner/Runtime/IVariableSource.cs
2025-08-13 09:26:42 +08:00

18 lines
394 B
C#

using System.Collections.Generic;
namespace BehaviorDesigner.Runtime
{
public interface IVariableSource
{
SharedVariable GetVariable(string name);
List<SharedVariable> GetAllVariables();
void SetVariable(string name, SharedVariable sharedVariable);
void UpdateVariableName(SharedVariable sharedVariable, string name);
void SetAllVariables(List<SharedVariable> variables);
}
}