/** * */ package com.metzoid.client; import org.json.JSONArray; /** * @author Ramius * */ public interface IClient { /** * Get the revision version * @return */ public int getVersion(); /** * Get all lines * @return */ public JSONArray getLines(); }