mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-19 19:06:45 -05:00
16 lines
254 B
C#
16 lines
254 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace OpenDiablo2.Common.Enums.Mobs
|
|||
|
{
|
|||
|
public enum eMobFlags
|
|||
|
{
|
|||
|
PLAYER,
|
|||
|
ENEMY,
|
|||
|
INVULNERABLE
|
|||
|
}
|
|||
|
}
|