using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace AX.InputSystem
{
    public abstract class GameObjectCloneable : MonoBehaviour, IGameObjectCloneable
    {
        public abstract bool GetCloneAble(Vector3 hitPoint, GameObject hitObj, CloneObjType cloneObjType);
    }
}