project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/Datastructures/TeamInGame.java
changeset 7476 2fb781bbdd51
child 7485 0481bd74267c
equal deleted inserted replaced
7473:45b9f25ff611 7476:2fb781bbdd51
       
     1 package org.hedgewars.hedgeroid.Datastructures;
       
     2 
       
     3 public final class TeamInGame {
       
     4 	public final Team team;
       
     5 	public final TeamIngameAttributes ingameAttribs;
       
     6 	
       
     7 	public TeamInGame(Team team, TeamIngameAttributes ingameAttribs) {
       
     8 		this.team = team;
       
     9 		this.ingameAttribs = ingameAttribs;
       
    10 	}
       
    11 	
       
    12 	public TeamInGame withAttribs(TeamIngameAttributes attribs) {
       
    13 		return new TeamInGame(team, attribs);
       
    14 	}
       
    15 }