Files
dota_factory/src/lib/ecs/component/AdvanceBehavior.h
2026-06-15 09:16:56 +02:00

10 lines
273 B
C

#pragma once
// Baseline fallback behavior, present on every ship. The executor moves the ship
// toward the opposing side (direction derived from FactionComponent), so a ship
// with no better behavior keeps advancing.
struct AdvanceBehavior
{
float score = 0.0f;
};