// ----------------------------------------------------------------------- // // Copyright 2013 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Platform { using System; public interface IPlatformSettings { Size DoubleClickSize { get; } TimeSpan DoubleClickTime { get; } } }