2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDScriptComponent {
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t id; //!< The component ID
|
2021-12-05 17:54:36 +00:00
|
|
|
std::string script_name; //!< The script name
|
|
|
|
std::string client_script_name; //!< The client script name
|
|
|
|
};
|
|
|
|
|
2024-02-09 13:37:58 +00:00
|
|
|
class CDScriptComponentTable : public CDTable<CDScriptComponentTable, std::map<uint32_t, CDScriptComponent>> {
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-08-11 04:27:40 +00:00
|
|
|
void LoadValuesFromDatabase();
|
2023-03-17 14:36:21 +00:00
|
|
|
// Gets an entry by scriptID
|
2024-01-09 07:54:14 +00:00
|
|
|
const CDScriptComponent& GetByID(uint32_t id);
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|