Spaces:
Runtime error
Runtime error
File size: 226 Bytes
00437a9 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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;
}
}
|