Support for swapping two creatures on a side.
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
This commit is contained in:
2021-03-26 12:01:18 +01:00
parent cd3d665687
commit 9b7c271a20
3 changed files with 39 additions and 1 deletions

View File

@@ -85,6 +85,8 @@ namespace CreatureLib::Battling {
void MarkAsFled() noexcept { _hasFled = true; }
uint8_t GetRandomCreatureIndex();
bool SwapPositions(u8 a, u8 b);
};
}