Main/Assets/Code/Global/Define/MapDefine.cs
2025-01-25 04:38:09 +08:00

37 lines
850 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Text;
namespace Thousandto.Code.Global
{
//地图类型-1登录场景0世界地图1副本地图2竞技场3跨服副本5位面
public enum MapTypeDef
{
Map = 0, //普通地图
Copy = 1, //副本
JJC = 2, //竞技场
CrossCopy = 3, // 3跨服副本
PlanCopy = 5, //位面副本
UnDefine
}
public enum TransportTypeDef
{
// 0 普通 1 世界地图传送 2日常任务传送 3世界boss 4 区域npc传送
WorldMap = 1,
TaskSkill = 2,
Boss = 3,
Npc = 4,
TaskCollect = 5,
DuJie = 6,
}
//昼夜类型
public enum DayAndNightType
{
Day, //白天
Night, //夜晚
Count,
}
}