A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4namespace osu.Framework.Bindables
5{
6 /// <summary>
7 /// Represents a class which can be parsed from an arbitrary object.
8 /// </summary>
9 public interface IParseable
10 {
11 /// <summary>
12 /// Parse an input into this instance.
13 /// </summary>
14 /// <param name="input">The input which is to be parsed.</param>
15 void Parse(object input);
16 }
17}