2024-06-23 19:12:22 +01: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;
}
}