mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
3a6313a3ba
* Assorted pet improvements * remove unecessary include * updates to address some feedback * fixed database code for testing * messinng around with tables * updated to address feedback * fix world hang * Remove at() in CDLootTableTable.cpp * Uncapitalize LOT variable * Uncapitalize LOT variable
22 lines
582 B
C++
22 lines
582 B
C++
#pragma once
|
|
|
|
// Custom Classes
|
|
#include "CDTable.h"
|
|
|
|
#include <cstdint>
|
|
|
|
struct CDObjectSkills {
|
|
uint32_t objectTemplate; //!< The LOT of the item
|
|
uint32_t skillID; //!< The Skill ID of the object
|
|
uint32_t castOnType; //!< ???
|
|
uint32_t AICombatWeight; //!< ???
|
|
};
|
|
|
|
class CDObjectSkillsTable : public CDTable<CDObjectSkillsTable, std::vector<CDObjectSkills>> {
|
|
public:
|
|
void LoadValuesFromDatabase();
|
|
// Queries the table with a custom "where" clause
|
|
std::vector<CDObjectSkills> Query(std::function<bool(CDObjectSkills)> predicate);
|
|
};
|
|
|