11 lines
181 B
C++
11 lines
181 B
C++
#pragma once
|
|
|
|
class EntityAdmin;
|
|
|
|
// Moves a ship to its retreat point (the rally point) when Retreat wins.
|
|
class RetreatExecutor
|
|
{
|
|
public:
|
|
void execute(EntityAdmin& admin);
|
|
};
|