mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-19 14:27:45 +01:00
Actors and objects
This commit is contained in:
parent
a7d9673bed
commit
3a29603def
32 changed files with 1700 additions and 999 deletions
23
Dalamud/Game/ClientState/Objects/Enums/BattleNpcSubKind.cs
Normal file
23
Dalamud/Game/ClientState/Objects/Enums/BattleNpcSubKind.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
namespace Dalamud.Game.ClientState.Objects.Enums
|
||||
{
|
||||
/// <summary>
|
||||
/// An Enum describing possible BattleNpc kinds.
|
||||
/// </summary>
|
||||
public enum BattleNpcSubKind : byte
|
||||
{
|
||||
/// <summary>
|
||||
/// Invalid BattleNpc.
|
||||
/// </summary>
|
||||
None = 0,
|
||||
|
||||
/// <summary>
|
||||
/// BattleNpc representing a Pet.
|
||||
/// </summary>
|
||||
Pet = 2,
|
||||
|
||||
/// <summary>
|
||||
/// BattleNpc representing a standard enemy.
|
||||
/// </summary>
|
||||
Enemy = 5,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue