feat : 주석 업데이트

This commit is contained in:
qornwh1
2026-03-30 17:29:57 +09:00
parent 462f9d98f1
commit 5221261d1e
6 changed files with 29 additions and 8 deletions

View File

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