/*
* @author Valentin Simonov / http://va.lent.in/
*/
namespace TouchScript
{
///
/// An interface for objects which can expose some kind of debug information which can be turned on and off.
///
public interface IDebuggable
{
///
/// Gets or sets if this object should show its debug information.
///
bool DebugMode { get; set; }
}
}