commit
289b6577d5
|
@ -85,7 +85,7 @@ protected:
|
||||||
* \class CSceneEndCondition
|
* \class CSceneEndCondition
|
||||||
* \brief Scene end condition
|
* \brief Scene end condition
|
||||||
*/
|
*/
|
||||||
class CSceneEndCondition : public CSceneCondition
|
class CSceneEndCondition final : public CSceneCondition
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
int winTeam = 0;
|
int winTeam = 0;
|
||||||
|
@ -109,7 +109,7 @@ public:
|
||||||
* \class CAudioChangeCondition
|
* \class CAudioChangeCondition
|
||||||
* \brief Audio change condition
|
* \brief Audio change condition
|
||||||
*/
|
*/
|
||||||
class CAudioChangeCondition : public CSceneCondition
|
class CAudioChangeCondition final : public CSceneCondition
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
std::string music = "";
|
std::string music = "";
|
||||||
|
|
|
@ -78,7 +78,7 @@ public:
|
||||||
* \brief Scoreboard rule for destroying other objects
|
* \brief Scoreboard rule for destroying other objects
|
||||||
* \see CScoreboard::AddKillRule()
|
* \see CScoreboard::AddKillRule()
|
||||||
*/
|
*/
|
||||||
class CScoreboardKillRule : public CScoreboardRule, public CObjectCondition
|
class CScoreboardKillRule final : public CScoreboardRule, public CObjectCondition
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
//! Read from line in scene file
|
//! Read from line in scene file
|
||||||
|
@ -90,7 +90,7 @@ public:
|
||||||
* \brief Scoreboard rule for EndMissionTake rewards
|
* \brief Scoreboard rule for EndMissionTake rewards
|
||||||
* \see CScoreboard::AddEndTakeRule()
|
* \see CScoreboard::AddEndTakeRule()
|
||||||
*/
|
*/
|
||||||
class CScoreboardEndTakeRule : public CScoreboardRule
|
class CScoreboardEndTakeRule final : public CScoreboardRule
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
int team = 0;
|
int team = 0;
|
||||||
|
|
Loading…
Reference in New Issue