mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
Moved namespace ItemField from item_instance.h to shareddb.cpp
This commit is contained in:
parent
9f01d14c64
commit
3438247904
@ -1,5 +1,8 @@
|
|||||||
EQEMu Changelog (Started on Sept 24, 2003 15:50)
|
EQEMu Changelog (Started on Sept 24, 2003 15:50)
|
||||||
-------------------------------------------------------
|
-------------------------------------------------------
|
||||||
|
== 10/17/2016 ==
|
||||||
|
Uleat: Moved namespace ItemField from item_instance.h to shareddb.cpp - the only place it is used
|
||||||
|
|
||||||
== 10/16/2016 ==
|
== 10/16/2016 ==
|
||||||
Uleat: Renamed struct EQEmu::ItemBase to EQEmu::ItemData and class ItemInst to EQEmu::ItemInstance
|
Uleat: Renamed struct EQEmu::ItemBase to EQEmu::ItemData and class ItemInst to EQEmu::ItemInstance
|
||||||
Uleat: Added class EQEmu::InventorySlot. Re-attached pertinent inventory token references to EQDictionary
|
Uleat: Added class EQEmu::InventorySlot. Re-attached pertinent inventory token references to EQDictionary
|
||||||
|
|||||||
@ -39,18 +39,6 @@ class EvolveInfo; // Stores information about an evolving item family
|
|||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
|
|
||||||
namespace ItemField
|
|
||||||
{
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
source = 0,
|
|
||||||
#define F(x) x,
|
|
||||||
#include "item_fieldlist.h"
|
|
||||||
#undef F
|
|
||||||
updated
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
// Specifies usage type for item inside EQEmu::ItemInstance
|
// Specifies usage type for item inside EQEmu::ItemInstance
|
||||||
enum ItemInstTypes
|
enum ItemInstTypes
|
||||||
{
|
{
|
||||||
|
|||||||
@ -38,6 +38,17 @@
|
|||||||
#include "string_util.h"
|
#include "string_util.h"
|
||||||
#include "eqemu_config.h"
|
#include "eqemu_config.h"
|
||||||
|
|
||||||
|
namespace ItemField
|
||||||
|
{
|
||||||
|
enum {
|
||||||
|
source = 0,
|
||||||
|
#define F(x) x,
|
||||||
|
#include "item_fieldlist.h"
|
||||||
|
#undef F
|
||||||
|
updated
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
SharedDatabase::SharedDatabase()
|
SharedDatabase::SharedDatabase()
|
||||||
: Database()
|
: Database()
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user