#pragma once // Custom Classes #include "CDTable.h" struct CDProximityMonitorComponent { uint32_t id; std::string Proximities; bool LoadOnClient; bool LoadOnServer; }; class CDProximityMonitorComponentTable : public CDTable> { public: void LoadValuesFromDatabase(); //! Queries the table with a custom "where" clause std::vector Query(std::function predicate); };