project_files/Android-build/SDL-android-project/src/org/hedgewars/mobile/EngineProtocol/Grave.java
start of implementation of the save button, check if there's something to save and update TeamSelectionActivity if a change has been made
package org.hedgewars.mobile.EngineProtocol;
public class Grave{
public final String name;
public final String path;
public Grave(String _name, String _path) {
name = _name;
path = _path;
}
public String toString(){
return name;
}
}