custom-chatbot / data /AIBlackboardEntry.cs
fastx's picture
Upload 64 files
00437a9
raw
history blame
272 Bytes
using System;
namespace Quantum
{
// This struct is stored on the blackboard asset
// It is NOT the one used on the Blackboard component
[Serializable]
public struct AIBlackboardEntry
{
public AIBlackboardValueType Type;
public AIBlackboardValueKey Key;
}
}