using System.Collections; using System.Collections.Generic; using UnityEngine; namespace Demo.Game { public class Anchor : ScriptableObject { public static Anchor Make() { return new GameObject().AddComponent(); } } }