project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/Datastructures/TeamInGame.java
changeset 7485 0481bd74267c
parent 7476 2fb781bbdd51
child 7508 763d3961400b
equal deleted inserted replaced
7482:d70a5b0d1190 7485:0481bd74267c
     1 package org.hedgewars.hedgeroid.Datastructures;
     1 package org.hedgewars.hedgeroid.Datastructures;
     2 
     2 
       
     3 /**
       
     4  * A team with per-game configuration. This is similar to the frontlib "team" structure,
       
     5  * except that it does not include weaponset and initial health, which are handled on a
       
     6  * per-game basis in the UI, but per-hog in the frontlib.
       
     7  */
     3 public final class TeamInGame {
     8 public final class TeamInGame {
     4 	public final Team team;
     9 	public final Team team;
     5 	public final TeamIngameAttributes ingameAttribs;
    10 	public final TeamIngameAttributes ingameAttribs;
     6 	
    11 	
     7 	public TeamInGame(Team team, TeamIngameAttributes ingameAttribs) {
    12 	public TeamInGame(Team team, TeamIngameAttributes ingameAttribs) {