mirror of
https://github.com/FireEmblemUniverse/fireemblem8u.git
synced 2024-11-23 05:10:00 +00:00
12 lines
284 B
C
12 lines
284 B
C
#ifndef GUARD_BMPHASE_H
|
|
#define GUARD_BMPHASE_H
|
|
|
|
int GetPhaseAbleUnitCount(int faction);
|
|
int CountUnitsInState(int faction, int state);
|
|
s8 AreUnitsAllied(int left, int right);
|
|
s8 IsSameAllegiance(int left, int right);
|
|
int GetCurrentPhase(void);
|
|
int GetNonActiveFaction(void);
|
|
|
|
#endif
|