diff -r 45b9f25ff611 -r 2fb781bbdd51 project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/Datastructures/TeamInGame.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/Datastructures/TeamInGame.java Mon Aug 06 22:39:36 2012 +0200 @@ -0,0 +1,15 @@ +package org.hedgewars.hedgeroid.Datastructures; + +public final class TeamInGame { + public final Team team; + public final TeamIngameAttributes ingameAttribs; + + public TeamInGame(Team team, TeamIngameAttributes ingameAttribs) { + this.team = team; + this.ingameAttribs = ingameAttribs; + } + + public TeamInGame withAttribs(TeamIngameAttributes attribs) { + return new TeamInGame(team, attribs); + } +}