bgabriel998/SoftwareDevProject

View on GitHub
app/src/main/java/ch/epfl/sdp/peakar/points/DownloadTopography.java

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package ch.epfl.sdp.peakar.points;

import androidx.core.util.Pair;

/**
 * Interface for the download of the topography task
 */
public interface DownloadTopography {
    void onResponseReceived(Pair<int[][], Double> topography);
}