Repository URL to install this package:
|
Version:
2023.12.1 ▾
|
namespace Gs2.Unity.Gs2StateMachine.Local.Model
{
public interface IVariableValue
{
VariableType Type();
string String();
long Int();
double Float();
bool Bool();
}
}