Files
FNGameProj/Plugins/EnginePlugins/SmartObjects/Source/SmartObjectsModule/Private/SmartObjectExecutionSlot.cpp
T
2024-03-03 23:44:39 +01:00

10 lines
235 B
C++

#include "SmartObjectExecutionSlot.h"
FSmartObjectExecutionSlot::FSmartObjectExecutionSlot() {
this->State = ESmartObjectSlotState::Free;
this->UserAvatar = NULL;
this->AssignedBehavior = NULL;
this->SlotIndex = 0;
}