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

12 lines
267 B
C++

#pragma once
class EntityAdmin;
// Moves a ship toward the opposing side when Advance is the winning behavior:
// player ships advance toward +x (the enemy), enemy ships toward -x (the base).
class AdvanceExecutor
{
public:
void execute(EntityAdmin& admin);
};