crossbow flags constexpr

This commit is contained in:
Zeno Rogue 2023-10-28 09:50:43 +02:00
parent 8e55cc9ebd
commit 9caa4daa62
1 changed files with 5 additions and 3 deletions

View File

@ -50,9 +50,11 @@ struct bowscore {
};
#endif
EX constexpr flagtype bpFIRST = 1;
EX constexpr flagtype bpLAST = 2;
EX constexpr flagtype bpCOPIED = 4;
#if HDR
static constexpr flagtype bpFIRST = 1;
static constexpr flagtype bpLAST = 2;
static constexpr flagtype bpCOPIED = 4;
#endif
EX vector<bowpoint> bowpath;