using System; using MessagePack; using UnityEngine; namespace KitsuneCafe.Serialization { [MessagePackObject(AllowPrivate = true)] public class Blackboard : ScriptableObject { public T TryRead(string key, out T value) { throw new NotImplementedException(); } public void Write(string key, object value) { throw new NotImplementedException(); } } }