Degulleo3D/Assets/LIN/DailyRoutine/InteractionPropSink.cs
2025-04-28 11:30:16 +09:00

12 lines
230 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class InteractionPropSink : InteractionProp
{
public override ActionType RoutineEnter()
{
return ActionType.Housework;
}
}