File size: 272 Bytes
00437a9
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
	}
}