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: 98827e476e370c11b446793fe1acce15d0f50053 (plain)
1
2
3
4
5
6
7
8
package com.mapswithme.maps.purchase;

import android.support.annotation.NonNull;

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