using System;
using UnityEngine;

public abstract class InteractionProp: MonoBehaviour
{
    public abstract ActionType RoutineEnter();
}