Allow event extensions to define conditions and actions with an operator (#3909)

This commit is contained in:
D8H
2022-10-29 23:20:10 +02:00
committed by GitHub
parent 71f20d7852
commit fd03deb4ea
60 changed files with 2656 additions and 760 deletions
@@ -10,8 +10,10 @@
namespace gd {
AbstractEventsBasedEntity::AbstractEventsBasedEntity(const gd::String& _name)
: name(_name), fullName("") {}
AbstractEventsBasedEntity::AbstractEventsBasedEntity(
const gd::String& _name,
gd::EventsFunctionsContainer::FunctionOwner functionContainerSource)
: name(_name), fullName(""), eventsFunctionsContainer(functionContainerSource) {}
void AbstractEventsBasedEntity::SerializeTo(SerializerElement& element) const {
element.SetAttribute("description", description);