Merging Source v1.7.2: top-level class changes

This commit is contained in:
Evan Debenham
2014-10-17 02:16:42 -04:00
parent 6d177a163a
commit 92a17f392e
7 changed files with 73 additions and 16 deletions
@@ -51,11 +51,10 @@ public class GamesInProgress {
}
}
public static void set( HeroClass cl, int depth, int level, int armor ) {
public static void set( HeroClass cl, int depth, int level ) {
Info info = new Info();
info.depth = depth;
info.level = level;
info.armor = armor;
state.put( cl, info );
}
@@ -70,6 +69,5 @@ public class GamesInProgress {
public static class Info {
public int depth;
public int level;
public int armor;
}
}