package com.yuyh.sprintnba.ui.view; import com.yuyh.sprintnba.http.bean.match.MatchStat; import com.yuyh.sprintnba.ui.view.base.BaseView; import java.util.List; /** * @author yuyh. * @date 2016/7/5. */ public interface MatchPlayerDataView extends BaseView { void showPlayerData(List<MatchStat.PlayerStats> playerStatses); }