This commit is contained in:
CortexCore
2024-11-23 17:20:13 +08:00
commit bb257507bc
133 changed files with 2574 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System.Collections;
using System.Collections.Generic;
namespace Net.Project.B.Interaction
{
/// <summary>
/// 互动类型
/// </summary>
public interface IWorldInteractionType
{
}
/// <summary>
/// 长按互动
/// </summary>
public interface IWorldHoldingInteraction
{
}
}