#pragma once // Custom Classes #include "CDTable.h" #include #include typedef uint64_t BehaviorParameterHash; typedef float BehaviorParameterValue; class CDBehaviorParameterTable : public CDTable> { public: void LoadValuesFromDatabase(); float GetValue(const uint32_t behaviorID, const std::string& name, const float defaultValue = 0); std::map GetParametersByBehaviorID(uint32_t behaviorID); };