package view.objects;

import java.io.File;

import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.Label;

/**
 * @author Matthew
 *
 */
public class OtherCharacterRow {
	@FXML
	Label characterName;
	File characterFile;
	@FXML
	Button loadButton;
	public OtherCharacterRow(String characterName, File characterFile) {
		super();
		this.characterName = new Label(characterName);
		this.characterFile = characterFile;
		this.loadButton = new Button("Load");
	}
	
	
}
