Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PurchaseStateActivator.java « purchase « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 89648a071fa1c185c6d67d4321ee1698d1a70afc (plain)
1
2
3
4
5
6
7
8
package com.mapswithme.maps.purchase;

import androidx.annotation.NonNull;

public interface PurchaseStateActivator<State>
{
  void activateState(@NonNull State state);
}