11 lines
176 B
C++
11 lines
176 B
C++
#pragma once
|
|
|
|
class EntityAdmin;
|
|
|
|
// Moves a ship to its rally point when Rally is the winning behavior.
|
|
class RallyExecutor
|
|
{
|
|
public:
|
|
void execute(EntityAdmin& admin);
|
|
};
|