2025-02-09 18:57:59 +00:00

12 lines
201 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace MBT
{
public abstract class BlackboardVariable : MonoBehaviour
{
public string key;
}
}