package view.objects;

import java.io.File;

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

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