15 lines
224 B
C#
15 lines
224 B
C#
|
|
// Copyright (c) 2007-2016 CSJ2K contributors.
|
|||
|
|
// Licensed under the BSD 3-Clause License.
|
|||
|
|
|
|||
|
|
namespace CSJ2K.Util
|
|||
|
|
{
|
|||
|
|
public interface IImage
|
|||
|
|
{
|
|||
|
|
#region METHODS
|
|||
|
|
|
|||
|
|
T As<T>();
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
}
|
|||
|
|
}
|