mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-18 17:34:45 +01:00
18 lines
394 B
C#
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);
|
|
}
|
|
}
|