DarkflameServer/dScripts/ai/AG/AgStromlingProperty.cpp
2023-06-06 20:48:30 -07:00

17 lines
293 B
C++

#include "AgStromlingProperty.h"
#include "MovementAIComponent.h"
#include "eReplicaComponentType.h"
void AgStromlingProperty::OnStartup(Entity* self) {
auto movementInfo = MovementAIInfo{
"Wander",
71,
3,
100,
1,
4
};
self->AddComponent<MovementAIComponent>(movementInfo);
}