Revert "refactor(Dalamud): switch to file-scoped namespaces"

This reverts commit b5f34c3199.
This commit is contained in:
goat 2021-11-18 15:23:40 +01:00
parent d473826247
commit 1561fbac00
No known key found for this signature in database
GPG key ID: 7773BB5B43BA52E5
325 changed files with 45549 additions and 45209 deletions

View file

@ -1,27 +1,28 @@
namespace Dalamud.Game.ClientState.Objects.Enums;
/// <summary>
/// An Enum describing possible BattleNpc kinds.
/// </summary>
public enum BattleNpcSubKind : byte
namespace Dalamud.Game.ClientState.Objects.Enums
{
/// <summary>
/// Invalid BattleNpc.
/// An Enum describing possible BattleNpc kinds.
/// </summary>
None = 0,
public enum BattleNpcSubKind : byte
{
/// <summary>
/// Invalid BattleNpc.
/// </summary>
None = 0,
/// <summary>
/// BattleNpc representing a Pet.
/// </summary>
Pet = 2,
/// <summary>
/// BattleNpc representing a Pet.
/// </summary>
Pet = 2,
/// <summary>
/// BattleNpc representing a Chocobo.
/// </summary>
Chocobo = 3,
/// <summary>
/// BattleNpc representing a Chocobo.
/// </summary>
Chocobo = 3,
/// <summary>
/// BattleNpc representing a standard enemy.
/// </summary>
Enemy = 5,
/// <summary>
/// BattleNpc representing a standard enemy.
/// </summary>
Enemy = 5,
}
}