canto/Assets/Scripts/Serialization/Blackboard.cs
2025-10-02 15:28:03 -04:00

20 lines
397 B
C#

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