// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Media { public abstract class Transform : PerspexObject, ITransform { public abstract Matrix Value { get; } } }