15 lines
430 B
C#
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
|
|
} |