mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
4a50c60559
* Assorted pet improvements * remove unecessary include * updates to address some feedback * fixed database code for testing * Removed reference member (for now) * Removed cmake flag
30 lines
522 B
C++
30 lines
522 B
C++
#pragma once
|
|
|
|
#include "CDTable.h"
|
|
|
|
#include "Singleton.h"
|
|
|
|
#define UNUSED_TABLE(v)
|
|
|
|
/**
|
|
* Initialize the CDClient tables so they are all loaded into memory.
|
|
*/
|
|
class CDClientManager : public Singleton<CDClientManager> {
|
|
public:
|
|
CDClientManager() = default;
|
|
|
|
void LoadValuesFromDatabase();
|
|
void LoadValuesFromDefaults();
|
|
|
|
/**
|
|
* Fetch a table from CDClient
|
|
*
|
|
* @tparam Table type to fetch
|
|
* @return A pointer to the requested table.
|
|
*/
|
|
template<typename T>
|
|
T* GetTable() {
|
|
return &T::Instance();
|
|
}
|
|
};
|