1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-30 05:23:00 +00:00

ads-game:: priorities (and also main rock)

This commit is contained in:
Zeno Rogue
2022-09-28 21:06:07 +02:00
parent 95b205cce0
commit 773e73dcc2
5 changed files with 27 additions and 18 deletions

View File

@@ -2,7 +2,9 @@ namespace hr {
namespace ads_game {
enum eObjType { oRock, oMissile, oParticle, oResource };
enum eObjType { oRock, oMissile, oParticle, oResource, oMainRock };
PPR obj_prio[5] = { PPR::MONSTER_BODY, PPR::ITEMa, PPR::ITEM_BELOW, PPR::ITEM, PPR::MONSTER_HEAD };
struct ads_object {
eObjType type;