Lisa-Chatbot / data /AIBlackboardValueKey.cs
fastx's picture
Duplicate from fastx/custom-chatbot
59368e0
raw
history blame
226 Bytes
using System;
namespace Quantum
{
// Wrapping the blackboard value key inside a struct gives us a nice way to overload the Unity inspector.
[Serializable]
public struct AIBlackboardValueKey
{
public String Key;
}
}