getSanHistory method

List<String> getSanHistory()

get history of moves from logic

Implementation

List<String> getSanHistory() {
  List<String> history = _logic.getHistorySAN();
  return history;
}