mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 14:07:20 +00:00
17 lines
293 B
C++
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);
|
|
}
|