diff --git a/src/PlugIn.cpp b/src/PlugIn.cpp index fe77cc1..b21c6db 100644 --- a/src/PlugIn.cpp +++ b/src/PlugIn.cpp @@ -57,6 +57,9 @@ PlugIn::PlugIn() : m_compatible(false) { GOOGLE_PROTOBUF_VERIFY_VERSION; + this->RegisterTagItemType("Delta time", static_cast(PlugIn::TagItemElement::DeltaTime)); + this->RegisterTagItemFunction("Force planning", static_cast(PlugIn::TagItemFunction::ForceToBackend)); + this->DisplayUserMessage(PLUGIN_NAME, "INFO", (std::string("Loaded ") + PLUGIN_NAME + " " + PLUGIN_VERSION).c_str(), true, true, false, false, false); /* get the dll-path */ diff --git a/src/PlugIn.h b/src/PlugIn.h index 89260ea..67b6ecf 100644 --- a/src/PlugIn.h +++ b/src/PlugIn.h @@ -40,6 +40,7 @@ namespace aman { private: enum class TagItemElement { + DeltaTime = 0 }; void validateBackendData();