13 lines
296 B
C++
13 lines
296 B
C++
#pragma once
|
|
|
|
class EntityAdmin;
|
|
|
|
// Scores the rally behavior so player combat ships gather at the rally point
|
|
// until an enemy appears (Attack outscores it) or the departure timer removes
|
|
// the RallyBehavior component.
|
|
class RallyEvaluator
|
|
{
|
|
public:
|
|
void evaluate(EntityAdmin& admin);
|
|
};
|