12 lines
230 B
C++
12 lines
230 B
C++
#pragma once
|
|
|
|
class EntityAdmin;
|
|
|
|
// Picks the nearest damaged friendly within sensor range as the repair target.
|
|
// Scores high when such a target exists.
|
|
class RepairEvaluator
|
|
{
|
|
public:
|
|
void evaluate(EntityAdmin& admin);
|
|
};
|