14 lines
288 B
C++
14 lines
288 B
C++
#pragma once
|
|
|
|
#include "FactoryQueries.h"
|
|
|
|
class EntityAdmin;
|
|
|
|
// Scores high only when the ship's cargo is full, and assigns the nearest
|
|
// SalvageBay as the delivery destination.
|
|
class DeliverScrapEvaluator
|
|
{
|
|
public:
|
|
void evaluate(EntityAdmin& admin, const FactoryState& state);
|
|
};
|