2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
2022-07-09 06:07:52 +00:00
|
|
|
#include <unordered_map>
|
2022-07-12 03:43:09 +00:00
|
|
|
#include <unordered_set>
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
struct CDBehaviorTemplate {
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t behaviorID; //!< The Behavior ID
|
|
|
|
uint32_t templateID; //!< The Template ID (LOT)
|
|
|
|
uint32_t effectID; //!< The Effect ID attached
|
2022-07-12 03:43:09 +00:00
|
|
|
std::unordered_set<std::string>::iterator effectHandle; //!< The effect handle
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
2024-02-09 13:37:58 +00:00
|
|
|
class CDBehaviorTemplateTable : public CDTable<CDBehaviorTemplateTable, std::unordered_map<uint32_t, CDBehaviorTemplate>> {
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-08-11 04:27:40 +00:00
|
|
|
void LoadValuesFromDatabase();
|
|
|
|
|
2022-07-09 06:07:52 +00:00
|
|
|
const CDBehaviorTemplate GetByBehaviorID(uint32_t behaviorID);
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|