Added information about online files (favorites, author etc.) to GuiReplayListEntry

This commit is contained in:
CrushedPixel
2015-06-04 16:14:03 +02:00
parent 9c01db6fe1
commit d15011eff6
5 changed files with 66 additions and 25 deletions

View File

@@ -19,7 +19,7 @@ public enum Category {
return this.id;
}
public Category fromId(int id) {
public static Category fromId(int id) {
for(Category c : values()) {
if(c.id == id) return c;
}