Net.Project.B/Src/Interaction/IWorldInteractions.cs

21 lines
348 B
C#

using System.Collections;
using System.Collections.Generic;
namespace Net.Project.B.Interaction
{
/// <summary>
/// 互动类型
/// </summary>
public interface IWorldInteractionType
{
}
/// <summary>
/// 长按互动
/// </summary>
public interface IWorldHoldingInteraction
{
}
}