2021-12-05 17:54:36 +00:00
|
|
|
#include "CDClientManager.h"
|
2023-03-17 14:36:21 +00:00
|
|
|
#include "CDActivityRewardsTable.h"
|
|
|
|
#include "CDAnimationsTable.h"
|
|
|
|
#include "CDBehaviorParameterTable.h"
|
|
|
|
#include "CDBehaviorTemplateTable.h"
|
|
|
|
#include "CDComponentsRegistryTable.h"
|
|
|
|
#include "CDCurrencyTableTable.h"
|
|
|
|
#include "CDDestructibleComponentTable.h"
|
|
|
|
#include "CDEmoteTable.h"
|
|
|
|
#include "CDInventoryComponentTable.h"
|
|
|
|
#include "CDItemComponentTable.h"
|
|
|
|
#include "CDItemSetsTable.h"
|
|
|
|
#include "CDItemSetSkillsTable.h"
|
|
|
|
#include "CDLevelProgressionLookupTable.h"
|
|
|
|
#include "CDLootMatrixTable.h"
|
|
|
|
#include "CDLootTableTable.h"
|
|
|
|
#include "CDMissionNPCComponentTable.h"
|
|
|
|
#include "CDMissionTasksTable.h"
|
|
|
|
#include "CDMissionsTable.h"
|
|
|
|
#include "CDObjectSkillsTable.h"
|
|
|
|
#include "CDObjectsTable.h"
|
|
|
|
#include "CDPhysicsComponentTable.h"
|
|
|
|
#include "CDRebuildComponentTable.h"
|
|
|
|
#include "CDScriptComponentTable.h"
|
|
|
|
#include "CDSkillBehaviorTable.h"
|
|
|
|
#include "CDZoneTableTable.h"
|
|
|
|
#include "CDVendorComponentTable.h"
|
|
|
|
#include "CDActivitiesTable.h"
|
|
|
|
#include "CDPackageComponentTable.h"
|
|
|
|
#include "CDProximityMonitorComponentTable.h"
|
|
|
|
#include "CDMovementAIComponentTable.h"
|
|
|
|
#include "CDBrickIDTableTable.h"
|
|
|
|
#include "CDRarityTableTable.h"
|
|
|
|
#include "CDMissionEmailTable.h"
|
|
|
|
#include "CDRewardsTable.h"
|
|
|
|
#include "CDPropertyEntranceComponentTable.h"
|
|
|
|
#include "CDPropertyTemplateTable.h"
|
|
|
|
#include "CDFeatureGatingTable.h"
|
|
|
|
#include "CDRailActivatorComponent.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
CDClientManager::CDClientManager() {
|
|
|
|
CDActivityRewardsTable::Instance();
|
2023-03-20 13:10:52 +00:00
|
|
|
CDAnimationsTable::Instance();
|
2023-03-17 14:36:21 +00:00
|
|
|
CDBehaviorParameterTable::Instance();
|
|
|
|
CDBehaviorTemplateTable::Instance();
|
|
|
|
CDComponentsRegistryTable::Instance();
|
|
|
|
CDCurrencyTableTable::Instance();
|
|
|
|
CDDestructibleComponentTable::Instance();
|
|
|
|
CDEmoteTableTable::Instance();
|
|
|
|
CDInventoryComponentTable::Instance();
|
|
|
|
CDItemComponentTable::Instance();
|
|
|
|
CDItemSetsTable::Instance();
|
|
|
|
CDItemSetSkillsTable::Instance();
|
|
|
|
CDLevelProgressionLookupTable::Instance();
|
|
|
|
CDLootMatrixTable::Instance();
|
|
|
|
CDLootTableTable::Instance();
|
|
|
|
CDMissionNPCComponentTable::Instance();
|
|
|
|
CDMissionTasksTable::Instance();
|
|
|
|
CDMissionsTable::Instance();
|
|
|
|
CDObjectSkillsTable::Instance();
|
|
|
|
CDObjectsTable::Instance();
|
|
|
|
CDPhysicsComponentTable::Instance();
|
|
|
|
CDRebuildComponentTable::Instance();
|
|
|
|
CDScriptComponentTable::Instance();
|
|
|
|
CDSkillBehaviorTable::Instance();
|
|
|
|
CDZoneTableTable::Instance();
|
|
|
|
CDVendorComponentTable::Instance();
|
|
|
|
CDActivitiesTable::Instance();
|
|
|
|
CDPackageComponentTable::Instance();
|
|
|
|
CDProximityMonitorComponentTable::Instance();
|
|
|
|
CDMovementAIComponentTable::Instance();
|
|
|
|
CDBrickIDTableTable::Instance();
|
|
|
|
CDRarityTableTable::Instance();
|
|
|
|
CDMissionEmailTable::Instance();
|
|
|
|
CDRewardsTable::Instance();
|
|
|
|
CDPropertyEntranceComponentTable::Instance();
|
|
|
|
CDPropertyTemplateTable::Instance();
|
|
|
|
CDFeatureGatingTable::Instance();
|
|
|
|
CDRailActivatorComponentTable::Instance();
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|