Files
dota_factory/src/lib/ecs/system/ai/RallyExecutor.h
2026-06-15 09:16:56 +02:00

11 lines
176 B
C++

#pragma once
class EntityAdmin;
// Moves a ship to its rally point when Rally is the winning behavior.
class RallyExecutor
{
public:
void execute(EntityAdmin& admin);
};