Ph0tonic/SDP_Projet

View on GitHub
app/src/main/java/ch/epfl/sdp/map/PaintableArea.kt

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package ch.epfl.sdp.map

import com.mapbox.mapboxsdk.geometry.LatLng

interface PaintableArea {
    fun getControlVertices(): List<LatLng>
    fun getShapeVertices(): List<LatLng>?
}