Cosmetic fix to match existing naming conventions

This commit is contained in:
Uleat
2016-06-02 20:19:40 -04:00
parent 542dc16752
commit e843f66135
2 changed files with 128 additions and 128 deletions
+8 -8
View File
@@ -27,41 +27,41 @@
namespace EntityLimits
{
namespace npc {
namespace NPC {
enum : int { Invalid = -1, Null, Safety };
enum : bool { False = false, True = true };
const size_t InvTypeTradeSize = 4;
} /*npc*/
} /*NPC*/
namespace merc {
namespace Merc {
enum : int { Invalid = -1, Null, Safety };
enum : bool { False = false, True = true };
const size_t InvTypeTradeSize = 4;
} /*merc*/
} /*Merc*/
namespace bot {
namespace Bot {
enum : int { Invalid = -1, Null, Safety };
enum : bool { False = false, True = true };
const size_t InvTypeTradeSize = 8;
} /*bot*/
} /*Bot*/
namespace pet {
namespace Pet {
enum : int { Invalid = -1, Null, Safety };
enum : bool { False = false, True = true };
const size_t InvTypeTradeSize = 4;
} /*pet*/
} /*Pet*/
}; /*EntityLimits*/