This commit is contained in:
aozhiwei 2023-07-20 14:29:09 +08:00
parent b3f59573ee
commit 8b46efd124

View File

@ -15,6 +15,11 @@ namespace cs
class SMJoinedNotify; class SMJoinedNotify;
} }
namespace mt
{
struct RankMatchConf;
}
class Entity; class Entity;
class RoomEntity; class RoomEntity;
class MoveableEntity; class MoveableEntity;
@ -263,6 +268,7 @@ public:
void GMFastForward(); void GMFastForward();
bool BulletCanReach(const glm::vec3& start, const glm::vec3& end); bool BulletCanReach(const glm::vec3& start, const glm::vec3& end);
bool MoveCanReach(const glm::vec3& start, const glm::vec3& end); bool MoveCanReach(const glm::vec3& start, const glm::vec3& end);
const mt::RankMatchConf* GetRankMatchConf() { return rank_match_conf_; }
private: private:
void ShuaAndroid(); void ShuaAndroid();
@ -413,6 +419,8 @@ private:
long long room_switch_ = 0; long long room_switch_ = 0;
const mt::RankMatchConf* rank_match_conf_ = nullptr;
friend class Incubator; friend class Incubator;
friend class Team; friend class Team;
}; };