1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-10-05 09:44:05 -04:00
OpenDiablo2/OpenDiablo2.Common/Enums/eLevelId.cs

17 lines
295 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenDiablo2.Common.Enums
{
public enum eLevelId
{
None,
Act1_Town = 1,
Act4_Fortress = 103,
Act5_Baal_Entrance = 120
}
}