Files
2025-05-01 07:23:28 +09:00

6 lines
166 B
C#

namespace GameServer.Contents.GameMode.Manage.PlayManage;
public interface IGameObject
{
Task<Result> interact(string anchorGuid, DateTime interactionTime);
}