Create attractive VASL scenarios, with loads of useful information embedded to assist with game play. https://vasl-templates.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
vasl-templates/vassal-shim/src/vassal_shim/lfa/LogFileAnalysis.java

20 lines
573 B

package vassal_shim.lfa ;
import java.util.ArrayList ;
// --------------------------------------------------------------------
public class LogFileAnalysis
{
public String logFilename ;
public String scenarioName ;
public String scenarioId ;
public ArrayList<Event> events ;
public LogFileAnalysis( String logFilename, String scenarioName, String scenarioId, ArrayList<Event> events ) {
this.logFilename = logFilename ;
this.scenarioName = scenarioName ;
this.scenarioId = scenarioId ;
this.events = events ;
}
}