Files
a301_mmo_game_server/MMOTestServer/MMOserver/Game/Channel/Maps/EunmMap.cs
2026-03-30 17:29:57 +09:00

16 lines
287 B
C#

namespace MMOserver.Game.Channel.Maps;
/*
* 맵 타입
* - ROBBY : 마을
* - DUNGEON : 오픈월드 던전 (마을 외곽)
* - INSTANCE : 인스턴스 레이드 던전(포톤용)
*/
public enum EnumMap : int
{
NONE = 0,
ROBBY = 1,
DUNGEON = 2,
INSTANCE = 10,
}