custom-chatbot / data /AIBlackboardValueKey.cs
fastx's picture
Upload 64 files
00437a9
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;
}
}