Files
Kg.SeaTime/Service/Application.Domain/Services/Interface/Monster/IGameMonsterService.cs
Putoo c374f27d16 111
2026-06-25 18:39:45 +08:00

15 lines
430 B
C#

namespace Application.Domain;
public interface IGameMonsterService
{
#region
Task<List<game_monster_map>> GetMonsterDataByMap(string mapId);
Task<bool> CreateMonsterToMap(string userId, string mapId, string areaCode, string monsterId,
int count = 1, int time = 0, string par = "");
Task<List<MapMonsterModel>> GetMapMonster(string userId, string mapId, string teamId);
#endregion
}