1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-27 17:34:53 +00:00

crossbow:: constexpr

This commit is contained in:
Zeno Rogue 2023-10-28 09:34:25 +02:00
parent 8129cfd726
commit 4e134c56b6

View File

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