/* * Date: 12/16/2005 * Time: 7:53 PM * * Copyright 2005, Static Boy Productions */ using System; namespace Jessie.Comm { /// /// Description of jtbvITTYComm. /// public interface jtbvITTYComm { void Connect(string address); string GetInput(); void Send(string sendStr); void Ping(); bool PongReceived { get; } bool Timeout { get; } } }