// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Framework.Bindables { /// /// Represents a class which can be parsed from an arbitrary object. /// public interface IParseable { /// /// Parse an input into this instance. /// /// The input which is to be parsed. void Parse(object input); } }