Convert tabs to spaces

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@13681 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
deveee 2013-09-14 19:19:40 +00:00
parent 07a3c4f3d5
commit d0be1fc0a2

View File

@ -41,20 +41,15 @@ class Controller;
class SoccerWorld : public WorldWithRank class SoccerWorld : public WorldWithRank
{ {
private: private:
/** Number of goals each team scored /** Number of goals each team scored */
*/
int m_team_goals[NB_SOCCER_TEAMS]; int m_team_goals[NB_SOCCER_TEAMS];
/** Number of goals needed to win /** Number of goals needed to win */
*/
int m_goal_target; int m_goal_target;
/** Whether or not goals can be scored (they are disabled when a point is scored /** Whether or not goals can be scored (they are disabled when a point is scored
and re-enabled when the next game can be played)*/ and re-enabled when the next game can be played)*/
bool m_can_score_points; bool m_can_score_points;
SFXBase *m_goal_sound; SFXBase *m_goal_sound;
/** Team karts */
public: public:
SoccerWorld(); SoccerWorld();