mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 12:03:27 +00:00
10 lines
235 B
C++
10 lines
235 B
C++
#include "SmartObjectExecutionSlot.h"
|
|
|
|
FSmartObjectExecutionSlot::FSmartObjectExecutionSlot() {
|
|
this->State = ESmartObjectSlotState::Free;
|
|
this->UserAvatar = NULL;
|
|
this->AssignedBehavior = NULL;
|
|
this->SlotIndex = 0;
|
|
}
|
|
|